var xmlHttp;
var xmlHttp1;

function CreateXMLHttpRequest()
{
	if(window.ActiveXObject)
	{
		xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
		xmlHttp1 = new ActiveXObject("Microsoft.XMLHTTP");
	}
	else if(window.XMLHttpRequest)
	{
		xmlHttp = new XMLHttpRequest();
		xmlHttp1 = new XMLHttpRequest();
	}
}



function loadhtml()
{
	
	//document.domain="lotour.com";
	//document.getElementById("IP_FORIE").src = "http://dibu.lotour.com/ip/xmlcache.aspx"
	if ( navigator.userAgent.toLowerCase().indexOf('msie') >= 0 ) {
		document.getElementById("IP_FORIE").src = "http://dibu.lotour.com/ip/xmlcache.aspx"; 
	} else {
		var js = document.createElement("script"); 
		js.setAttribute("type", "text/javascript");
		js.setAttribute("src", "http://dibu.lotour.com/ip/xmlcache.aspx");
		document.body.insertBefore(js, null);
		
	}
	
}





