function validate(form)
{
    if (form.firstName.value == "") {
        alert("Please enter your first name.");
        form.firstName.focus();
        return false;
    }
    
    if (form.lastName.value == "") {
        alert("Please enter your last name.");
        form.lastName.focus();
        return false;
    }
    
    if (form.dayPhone.value == "") {
        alert("Please enter your day time phone number");
        form.dayPhone.focus();
        return false;
    }
    
    if (form.callTime.value == "") {
        alert("Please tell us when the best time to call you is.");
        form.callTime.focus();
        return false;
    }
    
    if (form.emailAddress.value == "") {
        alert("Please enter your email address.");
        form.emailAddress.focus();
        return false;
    }

    if (form.emailAddress.value !== form.emailAddress2.value) {
        alert("Please make sure you have re-typed your email address correctly.");
        form.emailAddress.focus();
        return false;
    }
    
    if (form.investmentgoals.value == "") {
        alert("Please tell us about your investment goals.");
        form.investmentgoals.focus();
        return false;
    }
    
    if (form.age.value == "") {
        alert("Please specify your age.");
        form.age.focus();
        return false;
    }
    
    if (form.planning2Work.value == "") {
        alert("Please tell us how much longer you are planning to work.");
        form.planning2Work.focus();
        return false;
    }
    
    if (form.currentInvestments.value == "") {
        alert("Please let us know about your current investments. (If none, then please specify 'None' in field).");
        form.currentInvestments.focus();
        return false;             
    }
    
    if (form.investWithWhom.value == "") {
        alert("Please tell is with whom you're currently investing with (If nobody, then please specify 'Nobody' in field).");
        form.investWithWhom.focus();
        return false;
    }
    
    if (form.investmentApproach.value == "") {
        alert("Please tell us about your investment approach.");
        form.investmentApporach.focus();
        return false;
    }
    
    if (form.heardOfUs.value == "") {
        alert("Please specify how you heard of Gramercy Capital.");
        form.heardOfUs.focus();
        return false;
    }
    
    if (form.howCanWeHelp.value == "") {
        alert("Please tell us how we can help you.");
        form.howCanWeHelp.focus();
        return false;
    }
    
    //alert("OK");
    return true;
}
