<!-- Hide from old browsers

document.onmousedown = checkClick
if (document.layers){
        document.captureEvents(Event.MOUSEDOWN)
}

function checkClick(ev) {
        if (navigator.appName == "Netscape"){
                if (ev.which != 1) {
                        alert("Copyright Nature Photo Lease©")
                return false
                }       
        }
        else{
                if (event.button != 1){
                        alert("Copyright Nature Photo Lease©")
                        return false
                }
}
}
