// JavaScript Document


///script to prevent right click on images////

var message="WARNING: © Copyright 2006-7\No Permission is given to copy, reproduce, modify\nor download images or text from this website, or any part of it.";
function click(e) {
if (document.all) {
if (event.button == 2||event.button==3)  {
alert(message); return false;}}
if (document.layers) {
if (e.which == 3) {
alert(message); return false;}}}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);}
document.onmousedown=click;