

function somequotes(){
//Create an array whic will hold quotes
var quotes=new Array()

quotes[0]='In the implementation of activities to instill awareness, which populations of age group should it target?<br><form action="http://library.thinkquest.org/C0111040/cgi-bin/survey/survey.pl" method="post"><input type="hidden" name="id" value="11"><input type="radio" name="response" value="1" checked>Children 5-12<br><input type="radio" name="response" value="2">Teens 13-16<br><input type="radio" name="response" value="3">Adolescents 17-22<br><input type="radio" name="response" value="4">Adults 23-54<br><input type="radio" name="response" value="5">Senior Citizens 55-80<br><br><input type="submit" value="Vote!" target="_blank"></form><a href="http://library.thinkquest.org/C0111040/cgi-bin/survey/result.pl?id=11" target="_blank">View result without voting</a><br>'
quotes[1]='The political circles of certain countries does not seem to hinder the message and abide by the regulations and protocols in ceasing further pollution. Do you agree on this?<br><form action="http://library.thinkquest.org/C0111040/cgi-bin/survey/survey.pl" method="post"><input type="hidden" name="id" value="10"><input type="radio" name="response" value="1" checked>Yes<br><input type="radio" name="response" value="2">No<br><input type="radio" name="response" value="3">Hm... no idea<br><br><input type="submit" value="Vote!"></form><a href="http://library.thinkquest.org/C0111040/cgi-bin/survey/result.pl?id=10" target="_blank">View result without voting</a><br>'
quotes[2]='Do you agree that the use of radioactive components be completely phased out?<br><form action="http://library.thinkquest.org/C0111040/cgi-bin/survey/survey.pl" method="post"><input type="hidden" name="id" value="8"><input type="radio" name="response" value="1" checked>Yes<br><input type="radio" name="response" value="2">No<br><input type="radio" name="response" value="3">Hm... no idea<br><br><input type="submit" value="Vote!"></form><a href="http://library.thinkquest.org/C0111040/cgi-bin/survey/result.pl?id=8">View result without voting</a><br>'
quotes[3]='With the current technology employed, in considerations of the non uniformity in the advancement of technology of every countries to combat pollution, how long does it takes for a pollution free environment near to perfect?<br><form action="http://library.thinkquest.org/C0111040/cgi-bin/survey/survey.pl" method="post"><input type="hidden" name="id" value="12"><input type="radio" name="response" value="1" checked>10 - 50years<br><input type="radio" name="response" value="2">50 - 100 years<br><input type="radio" name="response" value="3">never at all<br><br><input type="submit" value="Vote!"></form><a href="http://library.thinkquest.org/C0111040/cgi-bin/survey/result.pl?id=12" target="_blank">View result without voting</a><br>'
quotes[4]='Do you think that the current frequent volcanic eruption is due to the stress of pollution done to Earth?<br><form action="http://library.thinkquest.org/C0111040/cgi-bin/survey/survey.pl" method="post"><input type="hidden" name="id" value="7"><input type="radio" name="response" value="1" checked>Yes<br><input type="radio" name="response" value="2">No<br><input type="radio" name="response" value="3">Hm... no idea<br><br><input type="submit" value="Vote!"></form><a href="http://library.thinkquest.org/C0111040/cgi-bin/survey/result.pl?id=7" target="_blank">View result without voting</a><br>'


var whichquote=Math.floor(Math.random()*(quotes.length));//which quote to display

var fontstylestart='<font face="Verdana" size="1" color="#000000">';
var fontstyleend='</span></font>'
document.write(fontstylestart+quotes[whichquote]+fontstyleend)
}
//usage
//Put above function in the head.
//Call the function where you want quotes to be displayed

