
function openVideo(windowFilename, winName, windowWidth, windowHeight) {
	window.open(windowFilename, winName, 'width=' + windowWidth +',height=' + windowHeight + ',scrollbars=no,top=100,left=100'); 
}


function checkQuickForm() {
	var selObj = quickForm.program;
	var selIdx = selObj.selectedIndex;
	var selObj2 = quickForm.campusid;
	var selIdx2 = selObj2.selectedIndex;
	//alert(selIdx2 + ":" + selObj2.options[selIdx2].value);
	if(quickForm.firstname.value.length == 0) {
		alert("Please enter your first name");
		return false;
	} else if(quickForm.lastname.value.length == 0) {
		alert("Please enter your last name");
		return false;
	} else if(selObj2.options[selIdx2].value == "-1") {
		alert("Please select the campus of interest");
		return false;
	} else if(selObj.options[selIdx].value == "-1") {
		alert("Please select the program of interest");
		return false;
	} else if(quickForm.phone.value.length == 0) {
		alert("Please enter your phone number");
		return false;
	} else if(quickForm.email.value.length == 0) {
		alert("Please enter your email address");
		return false;
	} else return true;
}

