function initValidation() {
            var objForm = document.forms["contact"];
            objForm.err = "Please fill in the following fields:\n\n";
            
            objForm.Fname.required = 1;
            objForm.Fname.minlength = 2;
            objForm.Fname.regexp = /^\w*$/;
            
            objForm.Lname.required = 1;
            objForm.Lname.minlength = 2;
            objForm.Lname.regexp = /^\w*$/;
            
            objForm.email.required = 1;
            objForm.email.regexp = "JSVAL_RX_EMAIL";

            objForm.description.required = 1;
}

function securityConfirm() {
    if (document.contact.security.value == document.securityInit.innerHTML) {
        return true;
    }
    else {
        return false;
    }
}

function initClear(text) {
    if ( text.value == "Enter any relevant information here. (NO HTML PLEASE)" ) {
        text.value = "";
    }
}

