<!-- 
document.onmousedown = checkClick
if (document.layers){
        document.captureEvents(Event.MOUSEDOWN)
}

function checkClick(ev) {
        if (navigator.appName == "Netscape"){
                if (ev.which != 1) {
                        alert("Broaden your horizons with us!")   // You can delete this line if you want
                        return false
                }       
        }
        else{
                if (event.button != 1){
                        alert("Broaden your horizons with us!")   // You can delete this line if you want
                        return false
        }
}
}

// -->

