function CheckFields() {
	with (document.Contact) {
		if (Name.value == "") {
			alert('Please enter your name.');
			return false;
		} else if (! isEmail(Email.value)) {
			alert('Your email address appears to be invalid. Please check it and try again.');
			return false;
		} else if (Message.value.length == 0) {
			alert('Please enter your message.');
			return false;
		} else if (Message.value.length > 5000) {
			alert('Sorry, your message is too long. Please edit it down.');
			return false;
		}
	}
}
function isEmail(string) {
	if (string.search(/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/) != -1) {
		return true;
	} else {
		return false;
	}
}
function MM_openBrWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}