loadstatustext = "<div style='text-align:center'><img src='"+linkS+"style/images/loading.gif'/><br>Đang tải ...</div>";
function ajaxLoad(url,id)
{
   if (document.getElementById) {
	   var x = (window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
	   }
	   if (x)
		   {
	   x.onreadystatechange = function()
			   {
				   el = document.getElementById(id);
				   el.innerHTML = loadstatustext;
		   if (x.readyState == 4 && x.status == 200)
				   {
				   el.innerHTML = x.responseText;
			   }
			   }
		   x.open("GET", url, true);
		   x.send(null);
		   }
}
function LoadDanhMuc()
{
	ajaxLoad(linkS+'AjaxLoadDanhMuc/','danhmuc');
}
function NganhHangCon(value,id2)
{
	ajaxLoad(linkS+'NganhHangCon/value='+value+',id2='+id2,'NganhHangCon');
}
function Weather(value)
{
		ajaxLoad(linkS+'Weather.php?id='+value,'content_Weather');
}
function DoanhNghiep(id)
{
	ajaxLoad(linkS+'DoanhNghiepTop/type='+id,'doanhnghieptop');
}
