var message="I worked hard on the HTML, photos, scripts, etc. in my website. I'm a nice guy and if you want them please e-mail me first at: ohayden@hotmal.com. All my photos and scripts are copyrighted and if I see someone using them without permission I will be unhappy. Let's not make a frustrated programmer unhappy, cuz' you can never know what'll happen ;) Honestly, if you ask I will give you permission. I just need to know where my work goes. Thank you!";
function clickIE() {
        if (document.all) {
                alert(message);
                return false;
        }
}
function clickNS(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=clickNS;
}
else{
        document.onmouseup=clickNS;
        document.oncontextmenu=clickIE;
}
