﻿var xmlHttp;
//================================================================
function ajaxs(url,view){
	document.getElementById(view).innerHTML="<table width='100' height='25' border='0' background='items/loading.jpg' dir='rtl'><tr><td><img src='items/loading.gif'><font face='tahoma' color='black' style='font-size:8pt' dir='rtl'>لطفاً صبر کنید...</font></td></tr></table>"
	if(window.ActiveXObject){
		xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
	}else if(window.XMLHttpRequest){
		xmlHttp = new XMLHttpRequest();
	}
	xmlHttp.open("GET",url,true);
	xmlHttp.onreadystatechange = StateChange;
	xmlHttp.send(null);
	function StateChange(){
		if(xmlHttp.readyState == 4){
			document.getElementById(view).innerHTML=xmlHttp.responseText;
		}
	}
};
