<!--
function checkForm(theForm) {
    return (goodChar(theForm.name, 'Your Name field is required', 1) && nonBlank(theForm.ph, 'Phone field is required', 1) && nonBlank(theForm.phm, 'Mobile Phone field is required', 1) && nonBlank(theForm.street, 'Street field is required', 1) && goodChar(theForm.city, 'City field is required', 1) && goodChar(theForm.zipc, 'Zip Code field is required', 1) && goodMultiEMails(theForm.email, 'Email field is required', 1) && nonBlank(theForm.proj_size, 'Please define approximate size of the Project', 1) && nonBlank(theForm.proj_budget, 'Please define Budget for Project', 1) && noErrors());
}

function checkExpertForm(theForm) {
    return (nonBlank(theForm.name, 'Name field is required', 1) && goodMultiEMails(theForm.email, 'Email field is required', 1) && nonBlank(theForm.problem, 'Problem/Question field is required', 1) && nonBlank(theForm.location, 'Please describe where do you live.', 1) && nonBlank(theForm.lighting, 'Please specify lighting conditions', 1) && nonBlank(theForm.irrigation, 'Please specify type of irrigation', 1) && noErrors());
}

//-->
