// JavaScript Document
  <!--
        function CmtCheckInput()
        {

          if (document.CmtForm.CmtUsrNamePrm.value=="" )
          {
            alert('Please enter a value for Name');
            document.CmtForm.CmtUsrNamePrm.focus();
            return false;
          }
          else if (document.CmtForm.CmtUsrPWPrm.value=="")
          {
            alert('Please enter a value for Password');
            document.CmtForm.CmtUsrPWPrm.focus();
            return false;
          }
          else
          {
            aWinSize = ",width="+screen.width+",height="+(screen.height-100)+",Top=0,Left=0";
            aNewWin = window.open("","CmtNewWindow","toolbar=0,menubar=0,scrollbars=1,resizable=1,status=1,directories=0"+aWinSize);
            aNewWin.name = "CmtNewWindow";
            return true;
          }
        }

        function CmtKeyPress(event)
        {
          if (event.keyCode == 13)
          {
            cmtLogin();
          }
        }

       function cmtLogin()
       {
         if (CmtCheckInput())
         {
            document.CmtForm.submit();
            document.CmtForm.CmtUsrPWPrm.value = "";
         }
       }

      //-->