function validateForm(){
	CheckFormInput();	
	CheckBgInfo();
	//Radio Button Validation
		errors += required($("#role"));
	errors += required($("input[name='budget']"),"radiogroup",$("#div_budget"));

	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{
		$("#register").attr("disabled","true")
		return true;
	}
}

	function validateForm1(){
		var errors = "";
		//submitform = document.forms['submitform'];
		
	
		errors += required($("input[name='ESRI_Data']"),"radiogroup",$("#div_productInterest"));
		errors += required($("input[name='ListDataType']"),"radiogroup",$("#div_DataType"));
		errors += required($("input[name='ListDatdelivery']"),"radiogroup",$("#div_Datdelivery"));	

		if ( errors ){
			alert("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;
		}
	}
