<!--
function startFocus()
{
        document.emailform.Name.focus();
}

var alphaChars="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.',- ";
var numChars="0123456789()- ";

function valEntries(form)
{
        if(document.emailform.Name.value=="")
        {
            alert("Please enter your name.");
            document.emailform.Name.focus();
            return false;
        }
        for(var i=0; i<document.emailform.Name.value.length; i++)
        {
            for(var j=0; j<alphaChars.length; j++)
            {
                if(alphaChars.charAt(j)==document.emailform.Name.value.charAt(i)) 
                {
                    break;
                }
                    else;
                {
                if(j==(alphaChars.length-1))
                    {
                        alert("Please enter a valid name.");
                        document.emailform.Name.focus();
                        return false;   
                    }
                }
            }
        }
var tomatch=/[A-Za-z0-9]\w{2,}@[A-Za-z0-9-]{3,}\.[A-Za-z]{2,}/
var emadd=document.emailform.Email.value;
        if(!tomatch.test(emadd))
        {
         alert("Please enter a valid Email address.");
         document.emailform.Email.focus();
         return false;
        }
        if(document.emailform.Commentbox.value=="")
        {
            alert("Please enter your message.");
            document.emailform.Commentbox.focus();
            return false;
        }		
}
//-->