if (typeof editors == "undefined") {

	var message = "Copyright © Moonen Shipyards 2009";
	//  Published at: scripts.tropicalpcsolutions.com
	function detail(){
		alert(message);
		return false;
	}
	function IE(){
		if (event.button == "2" || event.button == "3") {
			detail();
		}
	}
	function NS(e){
		if (document.layers || (document.getElementById && !document.all)) {
			if (e.which == "2" || e.which == "3") {
				detail();
			}
		}
	}
	document.onmousedown = IE;
	document.onmouseup = NS;
	document.oncontextmenu = new Function("return false");
	
}