

var urls='http://www.tombauwens.be';  // Change this url to ...
var title='tombauwens';  // Description of the bookmark

function printThis(){
	if (!window.print){
		alert("You need a 4.x browser or better to use this print button!")
		return
	}
window.print()
}

var message="Copyright 2003"; // Message for the alert box
// Don't edit below!
function click(e) {
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;



