/* Used in the submission of the proposal code */
function ValidateForm(theForm)
{
    if ((theForm.clientcode.value == 0 || theForm.clientcode.value == 'Proposal Login')) {
        alert("Please enter your proposal login.");
        theForm.clientcode.focus();
        return false;
    }
}
