<!--

function errorCheck() {
                
if (document.reply.FullName.value == "") {
        alert("You did not enter your 'Full Name'. Please fill in the field and click the 'Send' button.");
            document.reply.FirstName.focus();
        return (false);
                }

if (document.reply.Company.value == "") {
        alert("You did not enter your 'Company'. Please fill in the field and click the 'Send' button.");
            document.reply.Company.focus();
        return (false);
                }               

if (document.reply.Email.value == "") {
        alert("You did not enter your 'E-mail Address'. Please fill in the field and click the 'Send' button.");
            document.reply.Email.focus();
        return (false);
                }
                
if (document.reply.Phone.value == "") {
        alert("You did not enter your 'Phone'. Please fill in the field and click the 'Send' button.");
            document.reply.Phone.focus();
        return (false);
                }                

if (document.reply.Address.value == "") {
        alert("You did not enter your 'Street Address'. Please fill in the field and click the 'Send' button.");
            document.reply.Address.focus();
        return (false);
                }

if (document.reply.City.value == "") {
        alert("You did not enter your 'City'. Please fill in the field and click the 'Send' button.");
            document.reply.City.focus();
        return (false);
                }

if (document.reply.State.value == "") {
        alert("You did not enter your 'State'. Please fill in the field and click the 'Send' button.");
            document.reply.State.focus();
        return (false);
                }

if (document.reply.Zip.value == "") {
        alert("You did not enter your 'Zip Code'. Please fill in the field and click the 'Send' button.");
            document.reply.Zip.focus();
        return (false);
                }

if (document.reply.Message.value == "") {
        alert("You did not enter your 'Message'. Please fill in the field and click the 'Send' button.");
            document.reply.Message.focus();
        return (false);
                }
}

//-->

