<!--
function formCheck(formobj){

	// dialog message
	var alertMsg = "Please complete the following required fields:\n\n";
	var l_Msg = alertMsg.length;
	
	//check if a year was selected
	var numWords = formobj.Timeframe.value;
	if (numWords < 1){
		alertMsg += " - Please select a year\n";
	}
	
	//check if a group was selected
	var numWords = formobj.Group.value;
	if (numWords < 1){
		alertMsg += " - Please select a group\n";
	}
		
	//display any errors
	if (alertMsg.length == l_Msg){
		return true;
	}else{
		alert(alertMsg);
		return false;
	}
}
//-->