function FInitDIV(objName) {
var NavOption = document.getElementById(objName);
var display = NavOption.style.display;
NavOption.style.display = (NavOption.style.display == "block") ? "none" : "block";
}
function JumpDIV(objName1,objName2) {
var NavOption1 = document.getElementById(objName1);
var NavOption2 = document.getElementById(objName2);
var display1 = NavOption1.style.display;
var display2 = NavOption2.style.display;
NavOption1.style.display = (NavOption1.style.display == "block") ? "none" : "block";
NavOption2.style.display = (NavOption2.style.display == "block") ? "none" : "block";
}
function WebMailReDir(theProm) {
document.location.href = "/webmail/"+theProm;
}
function STPterms() {
window.open('/travel/signtheplanetcs/','Terms','status=yes,scrollbars=yes,resizable=yes,width=460,height=440');
}
function validateForm() {
missinginfo = "";
if (document.form1.firstname.value == "") {
missinginfo += "\n\n     -  Your firstname";
document.form1.firstname.style.backgroundColor = "#FFFFA7";
}
if (document.form1.lastname.value == "") {
missinginfo += "\n     -  Your lastname";
document.form1.lastname.style.backgroundColor = "#FFFFA7";
}
if (missinginfo != "") {
missinginfo ="The following required fields must be completed before any further action is taken." +
missinginfo + "\n\nPlease re-enter all required fields and submit again!";
alert(missinginfo);
} else {
thefirstname = document.form1.firstname.value;
thelastname = document.form1.lastname.value;
document.location.href = "/webmail/signtheplane?firstname="+thefirstname+"&lastname="+thelastname;
}
}
