function validateForm(form)
{
    if(!validate_DESIRED_LOAN_TYPE_01()) {
        return false;
    } else if(!validate_HOUSE_TYPE_01()) {
        return false;
    } else if(!validate_PROP_ZIP_01()) {
        return false;
    } else if(!validate_CREDIT_STATUS_01()) {
        return false;
    } else {
        if(formSubmitted==true) {
            alert( "You have already submitted this form." );
            return false;
        } else {
            noPopup=true;
            formSubmitted=true;
            submitForm2ForDifferentPopUnderTypes(form);
            return true;
        }
    }
}

function initF()
{
	window.zipcodeDataUrl = '/forms/zipcodemap';
    formSubmitted=false;
    initParams();
    
    if(document.getElementById("optDiv_DESIRED_LOAN_TYPE_01") != null) {
        hide("optDiv_DESIRED_LOAN_TYPE_01");
    }
    
    initMOR_homepurchase();
    initDiv_FHA_LOAN();
    showPage1ProductPath();
    
    initHighlight(window.document.form1);
}

function initMOR_homepurchase(){
    var selectObject = window.document.form1.DESIRED_LOAN_TYPE_01;
    var lastIndex = selectObject.options.length-1;
    var lastOption = selectObject.options[lastIndex].value;
    if (lastOption != "Home Purchase"){
    	selectObject.options[lastIndex] = null;
    }
}
