function ajaxSignOut(){
		var xmlHttp;
		try  
		{
			xmlHttp=new XMLHttpRequest();  
		}
		catch (e)
  		{
			try
    		{
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
			}
  			catch (e)
			{    
				try
	      		{
					xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); 
				}
    			catch (e)
	      		{
					alert("Your browser does not support AJAX!");      
					return false;      
				}    
			}  
		}
		
  		xmlHttp.onreadystatechange=function()
		{
			if(xmlHttp.readyState==4) {  
				/*success!*/
				document.getElementById('accountInfo').innerHTML = "<span><a href=\"#\" onclick=\"showSignIn();return false;\">Sign In</a>&nbsp;&#124;&nbsp;<a href=\"#\" onclick=\"showRegister();return false;\">Register</a></span>";
				location.reload(true);
			}
			else { /*failure!*/ }
		}
		
		xmlHttp.open("GET","../tripplanner/ajax/ajaxSignOut.aspx?sid="+Math.random(),true);
		xmlHttp.send(null);
}