function insertQuote( obj ) { 
var xmlHttp; 
try {xmlHttp=new XMLHttpRequest();	} catch (e)	{
try	{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); }	catch (e) {
try {xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); }
catch (e) {  } } }
xmlHttp.onreadystatechange=function(){if(xmlHttp.readyState==4) { obj.innerHTML=xmlHttp.responseText; }}	
xmlHttp.open("GET","quotes.aspx?seed="+(Math.random() * 1000),true);xmlHttp.send(null);
}
setTimeout("insertQuote(document.getElementById('quote'))",1);