// JavaScript Document


<!--
function validate()
{
	
if ((document.form1.organization.value == "") || (document.form1.fname.value == "") ||(document.form1.lname.value == "") || (document.form1.title.value == "") || (document.form1.address.value == "") || (document.form1.city.value == "") || (document.form1.state[document.form1.state.selectedIndex].value == "") || (document.form1.zip.value == "") || (document.form1.phone.value == "") || (document.form1.email.value == "")){
alert ("We have incomplete contact information.\n\nAll of the fields are required:\nOrganization\nFirst Name\nLast Name\nTitle\nAddress\nCity\nState\nZip/Postal Code\nPhone\nEmail\n\nPlease make sure those fields are completed.");
document.form1.organization.focus();
return false;
}

if ((!(document.form1.type_of_grant[0].checked)) && (!(document.form1.type_of_grant[1].checked))){
alert ("Please indicate the type of grant sought.\nDevelopment Grant (Maximum $150,000)\nPolicy Grant (Maximum $75,000)");
document.form1.type_of_grant[0].focus();
return false;
		}

if (document.form1.organization_desc.value == ""){
alert ("Please complete your organizational description");
document.form1.organization_desc.focus();
return false;
}

if (document.form1.project_desc.value == ""){
alert ("Please complete your project description");
document.form1.project_desc.focus();
return false;
}

if (document.form1.project_cost.value == ""){
alert ("Please complete your project cost");
document.form1.project_cost.focus();
return false;
}

}//#end function validate
//-->
