//This script is used in the demoLogin.aspx to provide default focus and submit on enter

document.getElementById('PwdBox').focus();
function check(e) 
{  
   if(navigator.appName == "Netscape")
      {
         var CharCode=e.Which;
      }
   else
      {
         var CharCode=e.keyCode;  
      }
	if(CharCode == 13) 
	{
	   document.getElementById('DemoLoginForm').submit();
	}
} 
