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] = "Donate your old computers to those in need. <a href=\"Physical/Suggestions.html#02\">Click here</a> for more info.";
Quotation[1] = "Let others know of the importance of Information Technology in their life. <a href=\"Physical/Suggestions.html#01\">Click here</a> for more info.";
Quotation[2] = "Make websites available to a wider range of audience. Participate in <a href=\"Digital/SugTranslation.html\">translation projects</a>.";
Quotation[3] = "Share the information you have with others. Participate in <a href=\"Digital/SugInformation.html\">Information Sharing projects</a>.";
Quotation[4] = "Learn via doing. Be challenged. Take part in <a href=\"Digital/SugCompetition.html\">Competition Projects</a>.";
Quotation[5] = "Spread awareness to your friends and family! Remember, \"together we are better\". <a href=\"Socioeconomic/suggestions.html\">Click here</a> for more info.";


// ======================================



// 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();



