var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "Both American and Vietnamese students have high access to computers. 97% of American students and 90% of Vietnamese students have computers at home.";
Quotation[1] = "Compared to American students, Vietnamese students have higher awareness of the importance of computers to their future career.";
Quotation[2] = "70% Vietnamese students think that computers are very important for their future occupation, while this number is only 38% in American students.";
Quotation[3] = "There is no significant gender inequality in computer access for both of the American and Vietnamese school. In other words, boys use computers as often as girls.";
Quotation[4] = "American students use computers at school for schoolwork, while Vietnamese students do not often use computers at school for this purpose.";
Quotation[5] = "On average, American students use computers at home and at school more often than Vietnamese students.";
Quotation[6] = "American students with home Internet connection are 50 times more likely to use computers at home than those without.";
Quotation[7] = "Year of graduation affects computer usage frequency at school. In America, seniors tend to use computers at school more frequently than juniors. However, in Vietnam, seniors use computers much less frequent than juniors.";
Quotation[8] = "There is no significant difference in the IT skills of Vietnamese and American students.";
Quotation[9] = "In America, there are more courses with assignments which require computers than in Vietnam.";


// ======================================



// Do not change anything below this line



// ======================================


var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));

if ((whichQuotation<0) || (whichQuotation>50)) {whichQuotation=2};
function showQuotation(){document.write(Quotation[whichQuotation]);}

showQuotation();




