var xmlHttpf 
function festive()
{ 
xmlHttpf=GetXmlHttpObjectf()
if (xmlHttpf==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 } 
var url="festive_calling.php?"
url=url+"&amp;sid="+Math.random()
xmlHttpf.onreadystatechange=stateChangedf 
xmlHttpf.open("GET",url,true)
xmlHttpf.send(null)
}

function stateChangedf() 
{ 
if (xmlHttpf.readyState==4 || xmlHttpf.readyState=="complete")
 { 
	document.getElementById("festive").innerHTML=xmlHttpf.responseText ;
 }  
}

function GetXmlHttpObjectf()
{
var xmlHttpf=null;
try
 {
 // Firefox, Opera 8.0+, Safari
 xmlHttpf=new XMLHttpRequest();
 }
catch (e)
 {
 //Internet Explorer
 try
  {
  xmlHttpf=new ActiveXObject("Msxml2.XMLHTTP");
  }
 catch (e)
  {
  xmlHttpf=new ActiveXObject("Microsoft.XMLHTTP");
  }
 }
return xmlHttpf;
}