function setPage(strURL,divID,returnFunction) {	var xmlHttpReq;	try {		xmlHttpReq = new ActiveXObject("Msxml2.XMLHTTP");	}	catch (e) {		try {			xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");		}		catch (e) {			try {				xmlHttpReq = new XMLHttpRequest();			}			catch (e) {			}		}	}	try {	    if(divID!="") document.getElementById(divID).innerHTML="<table width=100% height=100%><tr><td align=center><img src=i/loading.gif></td></tr></table>";		xmlHttpReq.open("POST", strURL, true);		xmlHttpReq.setRequestHeader("Content-Type","text/html");		xmlHttpReq.onreadystatechange =		function() {		    if (xmlHttpReq.readyState == 4) {			    if (xmlHttpReq.status == 200) {			        if(divID!=""){			            document.getElementById(divID).innerHTML=xmlHttpReq.responseText;			        }			        if(typeof returnFunction!="undefined"){			            eval(returnFunction);			        }				}			}		};		xmlHttpReq.send(strURL);			}	catch (e) {	}}

