function hideComment()
{
    var e = parent.document.getElementById("email");
    if (e)
    {
        e.style.display = "none";
    }
    document.location = "email.html";
}

function sendComment()
{
    document.form.submit();
    //hideComment();
}

function newEmail()
{
    document.location = "email.html";
}

// input:hover doesn't work in fucking IE
function highlightBorder(e)
{
    e.style.borderColor = "#777";
}

// input:hover doesn't work in fucking IE
function dimBorder(e)
{
    e.style.borderColor = "#ccc";
}
