// JavaScript Document
function validateForm(){
	CheckFormInput();
	CheckBgInfo();
	
	errors += required($("input[name='esriuser']"),"radiogroup",$("#div_esriuser"));
	
	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{
		return true;
	}
}

