function changeRubriek(rubriek_id){
   document.location.href = "?p=fotos&rid="+rubriek_id;
}


function popUp(folder, file, width, height) {
	var windowLeft	= (screen.width - width) / 2;
	var windowTop	= (screen.height - height) / 2; 
	var popUp 		= window.open('', 'AVsporting', 'height='+height+', width='+width+', left='+windowLeft+', top='+windowTop+', toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
	
	popUp.document.open();
	popUp.document.write("<html>");
	popUp.document.write("	<head>");
	popUp.document.write("	<title>Atletiek Vereniging Boxmeer</title>");
	popUp.document.write("		<style type=\"text/css\">body { padding:0; margin:0; }</style>");
	popUp.document.write("	</head>");
	popUp.document.write("	<body onClick=\"window.close();\" bottommargin=\"0\" rightmargin=\"0\" leftmargin=\"0\" topmargin=\"0\">");
	popUp.document.write("		<img src=\"images/" + folder + "/" + file + "\" border=\"0\">");
	popUp.document.write("	</body>");
	popUp.document.write("</html>");
	popUp.document.close();
	popUp.focus();
}