function setPage(strURL,divID,returnFunction,strLoading) {	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(typeof strLoading!="undefined")     	    document.getElementById(divID).innerHTML=strLoading;	    else    	    document.getElementById(divID).innerHTML="<img src=i/loading2.gif alt='loading...'>";		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) {	}}

