//Disable Print Screen

var message="Sorry, Due To Copyright Restrictions and Privacy, Users Are Not Allowed To Copy Photos Of This Site, But Photos Can Be Purchased By Submitting An Order Form. Thanks For Your Support and Cooperation.";

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")

//Disable Print Screen

function do_err()
    {
        return true
    }
onerror=do_err;

function no_cp()
    {
        clipboardData.clearData();setTimeout("no_cp()",200)
    }
no_cp();

