		function newWindow(titel, waarheen, x, y){
			var left = (screen.width - x) / 2;
			var top = (screen.height - y) / 2;
			
			myWin = window.open(waarheen ,"cyPopup", "left=" + left + ",top=" + top + ",width=" + x + ",height=" + y + ",scrollbars=no");
			if (!myWin)	  {
	    		// the user has suppressed the popup
				alert ('De popup die zonet geweigerd werd, is onderdeel van de site. \nGraag de popupkiller uitschakelen of deze popup toestaan.');
			}
		}
		
		function gotoLink(uri) {
			myWin = window.open(uri, "cyneticexternal");
		}