function showHours(id)
	 {
		xmlHttp=GetXmlHttpObject()
		xmlHttp=GetXmlHttpObject()
		if (xmlHttp==null)
  		{
  			alert ("Browser does not support HTTP Request")
  			return
  		} 
		
	 	document.getElementById('addrdiv').style.display="none";
		
			//alert(address)
				 var url="./includes/showHour.php?id="+id;  
			//alert(url)
					result="";
					action="";
					url=url+"&sid="+Math.random()
					xmlHttp.onreadystatechange=parseHour
					xmlHttp.open("POST",url,true)
					xmlHttp.send(null)
		
	 }
	 function parseHour() 
	{ 
		if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 		{ 
 			SResponse=xmlHttp.responseText;
			var rescount=SResponse.length;
		
			document.getElementById('hourdiv').style.display="";
			document.getElementById('hourdiv').innerHTML=SResponse;
			
		}
	}

	
	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;
	}
