// script for virtual advisor
function actionswitch(formname) {
	if (document.vapod2.urls[0].checked) {
		document.vapod2.action ="http://www.askadmissions.net/utahcurrent/aeresults.aspx";
	}
	if (document.vapod2.urls[1].checked) {
		document.vapod2.action = "http://utah.askadmissions.net/utah/aeresults.aspx";
	}
	
	if (document.vapod2.action) {
		return true;
	} else {
		alert('Please select the your student type');
		return false;
	}
}
/* Virtual adviser form validation */

function vasf() {
	document.vapod2.quser.focus();
}

