
function logout()
		{
			var testing;
			testing = "Some string";
			
			if(window.document.activeElement != null && window.document.activeElement.tagName == "BODY")
			{
				var theform
				if(window.navigator.appName.toLowerCase().indexOf("microsoft")>-1)
				{
					theform = document.Form1;
				}
				else
				{
					theform = document.forms["Form1"];
				}
				if(theform.__EVENTARGUMENT.value == '')
				{
					__doPostBack('lnkLogout','');
				}
			}
		}
		




	


