function loadUserLoginForm()
{
	var xmlhttp;
	if (window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange=function()
	{
		if (xmlhttp.readyState==4 && xmlhttp.status==200)
		{
			//alert(xmlhttp.responseText);
			document.getElementById("UserLoginForm").innerHTML=xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET","/ajax/LoginForm.Asp?tttt="+Math.random()*1000,true);
	xmlhttp.send();
}

function loadPageHeadMenu()
{
	var xmlhttp;
	if (window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange=function()
	{
		if (xmlhttp.readyState==4 && xmlhttp.status==200)
		{
			document.getElementById("tabs2").innerHTML=xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET","/shtml/IncHeadMenu.Htm?tttt="+Math.random()*1000,true);
	xmlhttp.send();
}

function loadPageLeftMenu()
{
	var xmlhttp;
	if (window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange=function()
	{
		if (xmlhttp.readyState==4 && xmlhttp.status==200)
		{
			document.getElementById("PageLeftMenuDiv").innerHTML=xmlhttp.responseText;
			flexMenu('leftMenuBox'); //ึุาช
		}
	}
	xmlhttp.open("GET","/shtml/IncLeftMenu.Htm?tttt="+Math.random()*1000,true);
	xmlhttp.send();
}


function loadNoticeList()
{
	var xmlhttp;
	if (window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange=function()
	{
		if (xmlhttp.readyState==4 && xmlhttp.status==200)
		{
			document.getElementById("noticeList").innerHTML=xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET","/shtml/IncNoticeList.Htm?tttt="+Math.random()*1000,true);
	xmlhttp.send();
}

