<!--



function LinkMail() {
document.FMail.SendTo.selectedIndex = 2
document.FMail.SendTo.focus()

if (document.FMail.SenderName.value == "") {
document.FMail.SenderName.focus()
 } else { 
document.FMail.Subject.focus() }
}



// Begining of Email Interactive helper

function CorrectNowEmail() {
if (document.FMail.ReplyType.selectedIndex == 0) { VerifyEmail() }
}



// END of Email Interactive helper


function EmailSubmit(f) {

if (!f.SenderName.value) {
alert("Please enter your name in the \"Your [sender's] name\" field.")
f.SenderName.focus(); return false }


xRT = f.ReplyTo.value


if (!xRT) {
alert("Please enter your Email address or your phone number in the \"Reply to\" field")
f.ReplyTo.focus(); return false }


 if (f.ReplyType.selectedIndex == 0) {

if (xRT.indexOf("@") < 1 || xRT.indexOf(".") < 3)
	{
  alert("The Email address you just entered is NOT in a VALID format. Please revise.");
  f.ReplyTo.focus(); return false;
	}

 }

if (!f.Subject.value) {
alert("Please enter your company name or the subject line in the \"Company Name\" field")
f.Subject.focus(); return false }

if (!f.Msg.value) {
alert("You forgot to type in your comment[s] in the message body.")
f.Msg.focus(); return (false) }

if (f.Msg.value.length > 10000) {
alert("You have entered more than 10kb in the message body. This Form-Mail application is "+
"intended for short messages. Please enter at most 10,000 characters in the message field.")
f.Msg.focus(); return (false) }

}




function GetKeyCode() { // Disable CTRL+N
if (event.keyCode == 78 && event.ctrlKey) { event.returnValue=false }
}


//-->
