<!--//  5-20-03 							//-->
function ValidateForm()
{
	var txtmsg = "";
	if (document.applicationForm.org_name.value == "")
	{
		txtmsg = txtmsg + "Organization Name\r";
	}
	
	if (document.applicationForm.add_1.value == "")
	{
		txtmsg = txtmsg + "Address\r";
	}
	
	if (document.applicationForm.city.value == "")
	{
		txtmsg = txtmsg + "City\r";
	}
	
	if (document.applicationForm.zip.value == "")
	{
		txtmsg = txtmsg + "Zip Code\r";
	}
	
	if (document.applicationForm.num_students.value == "")
	{
		txtmsg = txtmsg + "Number of Students\r";
	}
	
	var radcnt = 0;
	for(i=0; i < document.applicationForm.int_use.length; i++)
	{
		if(document.applicationForm.int_use[i].checked == false){
			radcnt = radcnt + 1
		}
	}
	if (radcnt > 1){
		txtmsg = txtmsg + "Intended use of internet access\r";
	}
	
	if (document.applicationForm.contact_name.value == "")
	{
		txtmsg = txtmsg + "Contact Name\r";
	}

	if (document.applicationForm.contact_title.value == "")
	{
		txtmsg = txtmsg + "Contact Title\r";
	}

	if (document.applicationForm.contact_phone.value == "")
	{
		txtmsg = txtmsg + "Contact Phone\r";
	}

	if (document.applicationForm.contact_email.value == "")
	{
		txtmsg = txtmsg + "Contact E-mail\r";		
	}
	
	if (txtmsg != ''){
		alert('Please complete the following:\r' + txtmsg);
	}
	else{
		document.applicationForm.submit();
	}
}