var xmlhttp2,xmlhttp3,xmlhttp4,xmlhttp5,xmlhttp6,xmlhttp7,xmlhttp8,xmlhttp9,xmlhttp10,xmlhttp11,xmlhttp12,xmlhttp13,xmlhttp14,xmlhttp15,xmlhttp16,xmlhttp17,xmlhttp18,xmlhttp19,xmlhttp20,xmlhttp21,xmlhttp22,xmlhttp23,xmlhttp24,xmlhttp25,xmlhttp26,xmlhttp27,xmlhttp28,xmlhttp29,xmlhttp30,xmlhttp31,xmlhttp32,xmlhttp33,xmlhttp34;

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


function header()
{
		var url = "../header.php";		
		xmlHttp = getxmlhttpobject();
		xmlHttp.onreadystatechange=function()
		{
			
            if(xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
			{	
				document.getElementById("header_div").innerHTML=xmlHttp.responseText;
			}		
		}
		xmlHttp.open("GET",url,true);
		xmlHttp.send(null);	
}






