<!--
	function Go_GetXmlHttpObject()
	{
		var v_temp_xmlHttp = null;
		
		try
	  	{  
		  	// Firefox, Opera 8.0+, Safari  
		  	v_temp_xmlHttp = new XMLHttpRequest();  
		}
		catch (e)
	  	{  
		  	// Internet Explorer  
		  	try
	    	{    
		    	v_temp_xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");    
	    	}
	  		catch (e)
	    	{    
	      		v_temp_xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");      
			}  
		}
					
		return v_temp_xmlHttp
	}
//-->	
