
var xmlhttpB;

	
function loadMenu(urlB)
{
	xmlhttpB=null;
	
	if (window.XMLHttpRequest)
	  {// code for all new browsers
	    xmlhttpB=new XMLHttpRequest();
	  }
	else if (window.ActiveXObject)
	  {// code for IE5 and IE6
	    xmlhttpB=new ActiveXObject("Microsoft.XMLHTTP");
	  }
	if (xmlhttpB!=null)
	  {
			
			xmlhttpB.onreadystatechange=state_ChangeB;  
	  		xmlhttpB.open("GET",urlB,true);
	  		xmlhttpB.send(null);
	  }
	  
 
	else
	  {
	  alert("Your browser does not support XMLHTTP.");
	  }
}



function state_ChangeB()
{
	if (xmlhttpB.readyState==4)
  	{// 4 = "loaded"
  		if (xmlhttpB.status==200)
    	{// 200 = OK
		
			document.getElementById('TMENU').innerHTML=xmlhttpB.responseText;
		
		}
		
	} // ready state 4
 }





