<!-- // Begin hiding from old browsers
// (Rightclick:) This section disables right click in MSIE and Netscape
function right(evnt) {
if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
if (evnt.which >= 2){
alert("Sorry, this is a no right click zone. All images, graphics and photos are copyright. All rights reserved. Please do not take my pictures. ");
return false;
}
}
else
if (event.button>=2)
alert("Sorry, this is a no right click zone. All images, graphics and photos are copyright. All rights reserved. Please do not take my pictures. ");
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
// (Resize:) End rightclick disable section

// End hiding -->