
function validateForm(){
	CheckFormInput();	
	CheckBgInfo();
	errors += required($("#roles"));
	errors += required($("#additionalcomments"));
	errors += required($("input[name='listBudget']"),"radiogroup",$("#div_listBudget"));
	errors += required($("input[name='listRpf']"),"radiogroup",$("#div_listRpf"));
	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;
	}
}

function checkDownloads(location)
{
	var embedObject = document.getElementById('Embedtr');
	if ( location.value.indexOf('downloads') == -1  || location.value.indexOf('.esri') == -1  || location.value.indexOf('.com') == -1 )
		embedObject.className = 'hidden';
	else
		embedObject.className = 'show';
}

