function getHTTPObject(){var xmlhttp;
/*@cc_on
	@if (@_jscript_version >= 5)
	{
		try
		{
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
		{
			try
			{
				xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (E)
			{
				xmlhttp = false;
			}
		}
	}
	@else
		xmlhttp = false;
	@end @*/
if(!xmlhttp&&typeof XMLHttpRequest!="undefined"){try{xmlhttp=new XMLHttpRequest()}catch(e){xmlhttp=false}}return xmlhttp}function getContent(a){GetAjaxContent(a,contentReady)}function GetAjaxContent(d,b){var a;try{a=getHTTPObject()}catch(c){return}if(a==null){return}try{netscape.security.PrivilegeManager.enablePrivilege("UniversalBrowserRead")}catch(c){}if(!a){b("NOT_SUPPORTED")}if(window.location.href.indexOf("www.")!=-1&&d.indexOf("http://")!=-1&&d.indexOf("www.")==-1){d=d.replace("http://","http://www.")}else{if(window.location.href.indexOf("www.")==-1&&d.indexOf("http://")!=-1&&d.indexOf("www.")!=-1){d=d.replace("http://www.","http://")}}d=d+"&random="+Math.floor(Math.random()*100000000);try{a.open("GET",d,true);a.onreadystatechange=function(){updateLoadStatus(a,b)};a.send(null)}catch(c){}}function updateLoadStatus(a,b){switch(a.readyState){case 1:break;case 2:break;case 3:break;case 4:if(a.status==200){b(a.responseText)}else{b("ERROR")}break;default:break}};