//Saving Session information
		function saveSessionInfo()
		{
			if (window.event.clientX < 0 && window.event.clientY < 0)
			{
				//alert("in");
				AJAXMethods.AddSessionInfo(callback_saveSessionInfo);
				//alert("out");
			}
		}
		function callback_saveSessionInfo()
		{
			/*alert(response)
			//if the server side code threw an exception
			if (response.error != null)
			{    
				alert(response.error); //we should probably do better than this
				return;
			} */
		}
		function removeSessionMapInfo()
		{
			if (window.event.clientX < 0 && window.event.clientY < 0)
			{
				//	alert("in5")
				AJAXMethods.RemoveSessionMapInfo(callback_removeSessionMapInfo);
				//alert("in6")
			}
		}
	
		function callback_removeSessionMapInfo(response)
		{	
			/*alert(response)
			//if the server side code threw an exception
			if (response.error != null)
			{    
				alert(response.error); //we should probably do better than this
				return;
			} */ 
			
		}
