<!--
function checkthis()
{
    var doc = document.forgot;
    if(doc.uid.value == "")
    {
        alert("Please enter your username.");
        doc.uid.select();
        doc.uid.focus();
        return;
    }
    doc.submit();
}

function checkthis2()
{
    var doc = document.forgot2;
    if(doc.paddy.value == "")
    {
        alert("Please enter your email address. It must be the one you used to sign up.");
        doc.paddy.select();
        doc.paddy.focus();
        return;
    }
    doc.submit();
}

function checkthis_friend()
{
    var doc = document.friend;
    if(doc.visitormail.value == "")
    {
        alert("Enter your real email.");
        doc.visitormail.select();
        doc.visitormail.focus();
        return;
    }

    if(doc.visitorname.value == "")
    {
        alert("Enter your real name.");
        doc.visitorname.select();
        doc.visitorname.focus();
        return;
    }

    if(doc.friendmail.value == "")
    {
        alert("Enter your friend real email.");
        doc.friendmail.select();
        doc.friendmail.focus();
        return;
    }

    if(doc.friendname.value == "")
    {
        alert("Enter your friend real name.");
        doc.friendname.select();
        doc.friendname.focus();
        return;
    }
    doc.submit();
}

function checkthis_contact()
{
    var doc = document.contact;

    if(doc.message.value == "")
    {
        alert("Enter your message.");
        doc.message.select();
        doc.message.focus();
        return;
    }

    if(doc.imagetext.value == "")
    {
        alert("Enter verification code.");
        doc.imagetext.select();
        doc.imagetext.focus();
        return;
    }

    doc.submit();
}

function checkthis_bug()
{
    var doc = document.bug;
    if(doc.comments.value == "")
    {
        alert("Enter your comments.");
        doc.comments.select();
        doc.comments.focus();
        return;
    }
    doc.submit();
}

function checkthis_faq()
{
    var doc = document.faq;
    if(doc.comments.value == "")
    {
        alert("Enter your comments.");
        doc.comments.select();
        doc.comments.focus();
        return;
    }
    doc.submit();
}

function checkthis_support()
{
    var doc = document.support;
    if(doc.comments.value == "")
    {
        alert("Enter your comments.");
        doc.comments.select();
        doc.comments.focus();
        return;
    }
    doc.submit();
}
-->
