var ImagesPath = "images/";
var ButtonsPath = "buttons/";

function StartUp()
{
}

//--------------------------------
// This code compares two fields in a form and submit it
// if they're the same, or not if they're different.
//--------------------------------
function checkEmail(theForm) {
    if (theForm.email.value.toUpperCase() != theForm.emailaddr.value.toUpperCase())
    {
        alert('The email addresses you entered do not match.  Please re-enter.');
        return false;
    } else {
        alert('Your email has been sent.  Thank you.');
        return true;
    }
}
