// No right mouse click
var message="(c) Gray Davis 2006";
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")


// Popup window for thumbnail click
function loadthumb(img) {
var load = window.open('display.php?hybrid='+img,'thumb','scrollbars=no,menubar=no,height=435,width=420,resizable=yes,toolbar=no,location=no,status=no');
if (load.blur) load.focus();

}

// Show copyright
function Show()
    {
        x = event.clientX + document.body.scrollLeft + 20;
        y = event.clientY + document.body.scrollTop - 100;
        Popup.style.display="block";
        Popup.style.left = x;
        Popup.style.top = y;
    }
function Hide()
    {
        Popup.style.display="none";
    }