// Title: oranjepak.js
// Version: 1.0
// Last Modify: 13-8-2005 
// Author: R. Hof
// Copyright (c) 2005


function addbookmark(){
var bookmarkurl="http://www.oranjepakken.nl/"
var bookmarktitle="= Oranjepakken.nl =  Unieke maatpakken."
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}


function statbar(txt){
	window.status = txt;
}


function click(e) {
var message="Niet toegestaan."; 
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}

if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;