	/******************************************************************
	*	T1 Copyright                                                  *
	*   --------------------------                        		      *
	*   Bij rechtermuis knop komt er een alert box met copyright     *
	******************************************************************/
	var loc = self.location.href;
	var loc_loc = loc.replace("http://","");
	var loc_t = loc_loc.split("/");
	var loc_d = loc_t[0];
	var loc_a = loc_d.split(".");
	var loc_length = loc_a.length - 1 ;
	var loc_lengt_minus = loc_length - 1;
	var loc_b = loc_a[loc_lengt_minus] + "." + loc_a[loc_length];
	var message="Copyright 2012, "+loc_b+".\nU heeft geen toestemming om de bron te bekijken of een kopie te maken van de website teksten.\nYou do not have permission to see the source of this file or copy its content."; // Message for the alert box
	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;
	// End hiding script from old browsers -->

