/* r1=Math.floor(Math.random()*101); r2=Math.floor(Math.random()*101); r3=Math.floor(Math.random()*101); randomnumber=r1*r2*r3; */ var xmlhttp = false; if (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); xmlhttp.overrideMimeType('text/xml'); } else if (window.ActiveXObject) { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } function ajax(u,d) { if(u!="") { var url = u; xmlhttp.open('GET',url,true); xmlhttp.onreadystatechange = function() { if(xmlhttp.readyState == 4 && (xmlhttp.status == 0 || xmlhttp.status == 200)) { document.getElementById(d).innerHTML = xmlhttp.responseText + ' '; } else { document.getElementById(d).innerHTML = "
Wait Plz<\/font><\/div>"; } }; xmlhttp.send(null); } }