<!--
//-------------------------
var xmlhttp = false;
//-------------------------
//check if ie...
try{

	//if javascript version os great than 5
	xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");

}catch (e){

	//if not use older active x obj...
	try{

		//if  using ie...
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");

	}catch (E){

		//else we must be using a non-ie brower...
		xmlhttp = false;

	}


}
//-------------------------
//if using non-ie browser create a javascript instants of the object...
if(!xmlhttp && typeof XMLHttpRequest != 'undefined'){
	xmlhttp = new XMLHttpRequest();
}
//-------------------------
//-->