// JavaScript Document<script type="text/javascript">

function validateForm(){

	CheckFormInput();	
	errors += required($("#primaryUse"));
	errors += required($("#classesteachingdetail"));
	errors += required($("#howteachusingGISdetail"));
	errors += required($("#howmanystudents"));
	if ( errors ){
		alert(msg + "Please fill out all the required fields. \n\n The required fields will be highlighted for you.");
		window.location='#top';
		return false;
	}
	else{
		$("#submit_btn").attr("disabled","true")
		return true;
	}
}


