<!-- //Begin	
	var er_url = "jsBug.php?"; // The server-side script


	
	function handleHttpResponse1()
	{
		if(http.readyState == 4)
		{
			results = http.responseText;
		}
	}
	
	if(location.href.indexOf('fireflyservers')==-1)
		window.onerror = handleErrors; // or null to suppress error message
	
	function handleErrors(msg, url, line)
	{
	    var errorString = "message="+escape(msg);
	        errorString += "&url="+escape(location.href);
	        errorString += "&browser=" + escape(navigator.userAgent);
	    if(line!=0)
	    {
	    	errorString += "&line="+escape(line);
	    }    
	    objUrl = er_url + errorString;
		http.open("GET", objUrl, true);
		http.onreadystatechange = handleHttpResponse1;
		http.send(null);
		return true;
		
	}


	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;
	}
	
	var http = getHTTPObject(); // We create the HTTP Object
//  End -->