<script language=javascript>

<!-- function smartLogin(){ if (document.Login.userid.value == ""){ alert("You must enter your user id."); document.Login.userid.focus(); return false; } if (document.Login.passwd.value == ""){ alert("You must enter your password."); document.Login.passwd.focus(); return false; } // Check whether a domain was entered along with the userid. // If not, concatenate the userid and current domain. if (document.Login.userid.value.indexOf("@")==-1){ var fullUserid = document.Login.userid.value + "@c1svc.com"; document.Login.userid.value = fullUserid; } return true; } // Begin cs_help.cgivar HelpWindow = null function openHelp(sHelp){ url = sHelp + '.html' if (!HelpWindow || HelpWindow.closed){ HelpWindow = window.open('','HelpWindow',"width=350,height=400,menubar=yes,scrollbars=yes,resizable=yes"); } HelpWindow.document.location.href=url; HelpWindow.focus(); }// End cs_help.cgi //-->

</script>