function validateSelect(theForm) {
	for(var i=0; i<theForm.elements.length; i++) {
		if(theForm.elements[i].type == "select-one") {
			if(theForm.elements[i].options[theForm.elements[i].selectedIndex].value.length <= 0) {
				return false;
			}
		}
	}
	theForm.submit();
}

function download(theForm) {
	if(theForm.video.options[theForm.video.selectedIndex].value.length > 0) {
		window.open(theForm.video.options[theForm.video.selectedIndex].value,"Video","width=550,height=450,resizable=yes");
	}
	return false;
}