<!--
function checkForm(theForm) {
    return (nonBlank(theForm.uname, '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) && nonBlank(theForm.ucity, '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());
}

//-->

