	function myVoid() {}

	function rollover(what) {
		what.style.backgroundColor = '#cccccc';
		what.style.color = '#003399';
	}

	function rollout(what) {
		what.style.backgroundColor = '#e3e9fb';
		what.style.color = '#666666';
	}
	
	function hup(where) {
		parent.location=where;
	}
	
	// myVoid dient voor de popups href
	function myVoid() {;}
	
	// PopUpImage dient voor de popups, gecentreerd te tonen
	function PopUpImage(pic, w, h, titel) {
		var l1 = "<html><head><title>"+titel+"</title>";
		var l2 = "<link href=\"css/connect.css\" type=\"text/css\" rel=\"stylesheet\">";
		var l3 = "</head><body>";
		var l4 = "<center><span class=\"Text\">- <a class=\"site\" href=\"javascript:self.close()\" onclick=\"self.close()\">sluiten</a> -</span>";
		var l5 = "<img src=\""+pic+"\" class=\"BorderFamilie\" border=\"1\">";
		var l6 = "<br /><i><span class=\"Text\">Copyright &copy\; 2003</span></i></center>";
		var l7 = "</body></html>";
		h = h + 33;
		w = w + 20;
		middenscherm = screen.width / 2;
		middenpic = w / 2;
		l = (middenscherm - middenpic);
		boven = (screen.height/2)-(h/2);
	 	ImageWindow=window.open("", "",'height='+h+',width='+w+',left='+l+',top='+boven+',toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0');
		ImageWindow.document.write(l1+l2+l3+l4+l5+l6+l7);
		ImageWindow.document.close();
	}
