function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=no'
win = window.open(mypage, myname, winprops);
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function makePopUpWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
var opts = 'height='+h+',width='+w+',scrollbars='+scroll;
win = window.open(mypage, myname, opts);
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function right(e) {
if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2)) {
alert("All images and photographs on this site are copyright protected.  You must request permission from Patricia Camille Robidart to use them in any form or format.  For information about the images, please contact us through www.robidart.com");
return false;
}
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {
alert("All images and photographs on this site are copyright protected.  You must request permission from Patricia Camille Robidart to use them in any form or format.  For information about the images, please contact us through www. robidart.com");
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;

