<!-- Hide from oldies

// 040202 LR functions for MailFrm.cfm, comments added

// focus cursor at first text field
function cursorload()
{
    document.feedback.name.focus()
}

// form field validation function
function testform()
{
    if (document.feedback.name.value=="")  // no name
    {
        alert("Please enter your name.")
        document.feedback.name.focus()
        return false
    }
  
    if (document.feedback.email.value=="")  // no email address
    {
        alert("Please enter your e-mail address. Otherwise, the recipient will not be able to reply to you.")
        document.feedback.email.focus()
        return false
    }
  
    if (document.feedback.message.value=="")  // no message body
    {
        alert("Please enter your message.")
        document.feedback.message.focus()
        return false
    }
  
    if (document.feedback.wordpic.value=="")  // no picture text
    {
        alert("Please type the word that appears in the lower left.")
        document.feedback.wordpic.focus()
        return false
    }

    // checks the length of the message field 
    // if you want to change the length just change the "1400" below to whatever you want
    
    charsinput=document.feedback.message.value.length
    message="Your have exceeded 1400 characters -includes spaces, you input: "
    both=message + charsinput
    if (document.feedback.message.value.length > "1400")
    {  
        alert(both);  
        document.feedback.message.focus()
        return false
    }       

    return true
}

// attempt to hide name of gif/didn't work because .js read on client-side is visible
function writewordpic()
{
    document.write("<img src='wordpic.gif' border=0>")
}

// End Hiding -->