// javascript for waep pages 24 jan 2011

var eM='<a href="mailto:office'
eM = eM + '@wae'
eM = eM + 'xams.com'
eM = eM + '.au?subject=Message via web site" >office@wae'
eM = eM + 'xams.com.au</a>'

// set date format
var cMonths = new Array("January","February","March","April","May","June","July","August","September","October","November","December")
var cTime = new Date()
var cYear = cTime.getYear()
if (cYear<2000) cYear = cYear + 1900
var cDate = cMonths[cTime.getMonth()] + " " + cTime.getDate() + ", " + cYear

// quote picker
// double quotes = 147, 148
n = 16
q = new Array(n)
q[0] = "&#145;I liked your 3CD MAT exam. My students found it demanding but interesting and appropriate.&#146;"
q[1] = "&#145;We were impressed with your papers.&#146;"
q[2] = "&#145;We are very appreciative of the standard and quality of your suit of papers. After all were carefully checked by my staff for content, difficulty and errors, all us Mathematics staff were quite happy to run with the originals, with very little or no change. I thank you for taking that extra workload from us.&#146;"
q[3] = "&#145;Thanks for your efforts.&#146;"
q[4] = "&#145;I thought it was a very good paper.&#146;"
q[5] = "&#145;Thank you for setting and producing such excellent exam papers.&#146;"
q[6] = "&#145;I made no amendments to the paper and thought it was well written and a fair exam.&#146;"
q[7] = "&#145;Your papers are fantastic. Nice well-worded questions with lots of challenges at different levels. We are very impressed.&#146;"
q[8] = "&#145;They make a fabulous resource.&#146;"
q[9] = "&#145;Very happy with  the paper.&#146;"
q[10] = "&#145;We used your papers last year and were more than satisfied with the results.&#146;"
q[11] = "&#145;I have been told that your papers are good and would like to order them.&#146;"
q[12] = "&#145;I thought that the questions were well graded and a good coverage of the course. I also liked the balance of calculator and non-calculator questions.&#146;"
q[13] = "&#145;I'm pleased to tell you your papers are held in high regard by a number of HOLA's.&#146;"
q[14] = "&#145;Students  found it challenging, but this was good preparation for the external exam.&#146;"
q[15] = "&#145;Well laid out and formatted.&#146;"
q[16] = "&#145;Really sorted out our kids and validated our standards.&#146;"
var x = (n + 1) * Math.random()
x = Math.floor(x)
var quote1 = q[x]
do {
var y = (n + 1) * Math.random()
y = Math.floor(y)
}
while (x==y)
var quote2 = q[y]



