
// ******* Put this in the <HEAD> </HEAD> Tag!!! ***********
// Copyright © 1999 Doug Popeney
// Created by Doug Popeney (easyjav@easyjavascipt.com)
// JavaScript Made Easy!! - http://www.easyjavascript.com

//document.onmousedown = checkClick
if (document.layers){
        document.captureEvents(Event.MOUSEDOWN)
}

function checkClick(ev) {
        if (navigator.appName == "Netscape"){
                if (ev.which != 1) {
                        alert("Copyright 2000-2003 Cronomagic Canada.")   // 
                        return false
                }       
        }
        else{
                if (event.button != 1){
                        alert("Copyright 2000-2003 Cronomagic Canada.")   // 
                        return false
                }
        }
}

