<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function checkFirstErrorField(formField) {
	if (firstErrorField == '') {
		firstErrorField = formField;
	}
}

function emailCheck(field) {
	var goodEmail = field.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.info)|(\.mil)|(\.gov)|(\.org)|(\.name)|(\..{2,2}))$)\b/gi);
	if (goodEmail){
		return true;
	}
	else {
		return false;
	}
}

function getExtension(fieldValue) {
	return fieldValue.substring(fieldValue.lastIndexOf('.') + 1,fieldValue.length);
}

function focusSearch(textField) {
	if (textField.value == 'Search mvtimes.com') {
		textField.value = '';
		textField.style.color='#000';
	}
	else {
		textField.select();
	}
}

function blurSearch(textField) {		
	if (textField.value == '') {
		textField.value = 'Search mvtimes.com';
		textField.style.color='#666';
	}
}

function checkSearch(form) {
	if (form.q.value == 'Search mvtimes.com') {
		alert("Please enter your search term(s) before submitting");
		form.q.focus();
		form.q.select();
		return false;
	}
	else {
		form.submit();
	}
}
//-->