<script language="javascript">
function CheckIt() {
if (Form1.zPassword.value == '') {
var aa; aa = '';
aa = "You forgot to enter the Password!!!"
alert(aa);
return;
}
if (Form1.xStatus.value == '' || Form1.xStatus.value == 'TF') {
if (Form1.xTerm.value == '' && Form1.xCkDate.value == '') {
var aa; aa = '';
aa = "You need to enter either a Term or Date in TF Check!!!"
alert(aa);
return;
}
}
if (Form1.xFromEmail.value == '') {
var aa; aa = '';
aa = "You need to select a,\nReturn Email Recipient!!!"
alert(aa);
return;
}
if (Form1.xMode[0].checked == 1) {
answer = window.confirm('You are about to send notification to the Supervisors,\nIs that what you want to do?');
if (answer == false) {
return;
}
}
document.Form1.action = "Send.asp";
document.Form1.submit();
}