
function thehottest()
 {
    
	var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";
	var string_length = 4;
	var randomstring = '';
	for (var i=0; i<string_length; i++) {
		var rnum = Math.floor(Math.random() * chars.length);
		randomstring += chars.substring(rnum,rnum+1);
	}
	 var ui = randomstring;
 xmlhttp_thehottest.open("POST","active_thehottest.html?ui="+ui);
 xmlhttp_thehottest.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
 xmlhttp_thehottest.setRequestHeader("Connection", "close");
 xmlhttp_thehottest.send(parameters_thehottest);
  xmlhttp_thehottest.onreadystatechange=function() {
  if (xmlhttp_thehottest.readyState==4) {
 if (xmlhttp_thehottest.responseText)
  { 
 document.getElementById("thehottest").innerHTML=xmlhttp_thehottest.responseText;
  }
 } 	
}

}
thehottest(); 
