///function getIP() {		
	 xmlhttp = null;  
		try  
		{xmlhttp = new ActiveXObject("MSXML2.XMLHTTP"); }  
		catch(e)  
		{  
			try	{xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");  	}  
			catch(e2){}  
		}			
			var url= '/ip.aspx';
			xmlhttp.open("GET",url, true);	
			xmlhttp.onreadystatechange= HandleStateChangeUser;
			xmlhttp.send(null);		
	
///}

function HandleStateChangeUser()
{	 
	///if(xmlhttp.status==200) {
		if (xmlhttp.readyState == 4)
			  {		
				var responseText = xmlhttp.responseText;
				uip=responseText;				
			  }	  
	/// }	  
}