<!-- 
function ValidateShort()
{
	//--- Make sure the Name was entered
	if (document.frmShort.Name.value.length == 0) {
		alert("Please enter a name to continue.");
		document.frmShort.Name.focus();
		document.frmShort.Name.select();
		return false;
	}
	
	//--- Make sure the EMail Address was entered
	if (document.frmShort.Email.value.length == 0) {
		alert("Please enter an email address to continue.");
		document.frmShort.Email.focus();
		document.frmShort.Email.select();
		return false;
	}
	return true;
} //-->

