<!-- Created on May 17, 2004 5:28:53 PM -->

//the onMouseOver and onMouseOut functions for the rollover menu

function rollover(layerName)
{
document.getElementById(layerName).style.visibility="visible"
toggle=layerName
}

function mouseOut()
{
subText=toggle
document.getElementById(subText).style.visibility="hidden"
}

// the form for the contact page

function checkform() {
    if (!document.forms['form'].first.value) {
        alert('Please enter your name.');
        return false;
    }
    if (!document.forms['form'].email.value) {
        alert('Please enter a valid email address.');
        return false;
    }

// for the thankyou window for the contact page form

window.open("thankyou.html","thankyou","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=430, height=400")
}

// for opening quicktime streaming windows

function QTwindow(url,name){
window.open(url,name,'toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=no, resizable=yes, copyhistory=no, width=400, height=450')
}

// for opening other small windows: credits, filmography, etc.

function smWindow(url,name){
window.open(url,name,'toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width=450, height=700')
}

// for opening small windows for the publicity photos

function stillsLong(url,name){
window.open(url,name,'toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width=450, height=700')
}

function stillsHoriz(url,name){
window.open(url,name,'toolbar=no, location=no, directories=no, status=yes, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width=450, height=500')
}
