
function getSpecial()
{

 //document.getElementById('special').innerHTML='Loading...';

 var xmlHttp;
 try
 {
  // Firefox, Opera 8.0+, Safari
  xmlHttp= new XMLHttpRequest();
 }
 catch (e)
 {
  // Internet Explorer
  try
  {
   xmlHttp= new ActiveXObject("Msxml2.XMLHTTP");
  }
  catch (e)
  {
   try
   {
    xmlHttp= new ActiveXObject("Microsoft.XMLHTTP");
   }
   catch (e)
   {
    alert("Your browser does not support AJAX!");
    return false;
   }
  }
 }

 xmlHttp.onreadystatechange= function()
 {
// 0	The request is not initialized
// 1	The request has been set up
// 2	The request has been sent
// 3	The request is in process
// 4	The request is complete
  if(xmlHttp.readyState==1)
  {
   //document.getElementById('special').innerHTML='Loading...';
  }
  if(xmlHttp.readyState==4)
  {
   //alert(xmlHttp.responseText);
   // Get the data from the server's response
   document.getElementById('special').innerHTML=xmlHttp.responseText;
  }
 }

 id=0; //if(document.getElementById("cospec")) id=document.getElementById('cospec').value;
 xmlHttp.open("GET","/app/getspecial.php?id="+id+"&r="+Math.ceil(99+Math.random()*900),true);
 xmlHttp.send(null);

}
