function Validate2()
{
	//--- 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;
	}

	//Submit the Contact Us Form
	document.frmShort.submit();
	return true;
}


