//			 _______________________________________
//			|  Everything in this scriptfile is © 	|
//			|                 			|
//                      |          landhuis,		|
//                      |            2002 - 2004         	|
//			| 					|
//			| If you want to use this script, or a	|
//			| a part of the source code, please 	|
//			| mail me at: webmaster@landhuis.nl  	|
//			|_______________________________________|

document.onmousedown=muisrechts; 
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=muisrechts;

var ppalertmessage = "   This site is build by www.landhuis.nl   \nNothing may be used with out premission.\n\n  For info E-mail webmaster@landhuis.nl";
var teller=0;

function muisrechts(evnt) 
{
	if (navigator.appName == "Netscape") 
	{
		if (evnt.which >= 2)
		{
			alert(ppalertmessage);
			return false;
		}
	}
	else if (event.button>=2)
		alert(ppalertmessage);
}
