var xmlhttp;
function createxmlhttp(){if(window.ActiveXObject){xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")}else{xmlhttp=new XMLHttpRequest()}}
function showdiv(div,html)
{
	var tempdiv=document.getElementById(div).innerHTML;
	createxmlhttp();
	xmlhttp.open("get",html,true);
	xmlhttp.onreadystatechange=function(){
		if(xmlhttp.readyState==4)
		{
			if(xmlhttp.status==200)
			{
				tempdiv.innerHTML="";
				tempdiv.innerHTML=xmlhttp.responseBody;
				}
			}
		}
	}
