var win=null, w=0, h=0, titel="Zusters Van Liefde Van Jezus En Maria - Afbeelding";
function NewWindow(mypic,windowWidth,windowHeight,kleur,taal){
	if(!taal){taal="";}
	if (taal.indexOf("fr") >= 0) { titel = "Soeurs de la Charité de Jésus et de Marie - Image"}
	if (taal.indexOf("eng") >= 0) { titel = "Sisters of Charity of Jesus and Mary - Image"}

	if (mypic.indexOf("html") > 0)
	{
		w=parseInt(windowWidth)+40;
		h=parseInt(windowHeight)+120;
		LeftPosition=(screen.width)?(screen.width-w)/2:100;
		TopPosition=(screen.height)?(screen.height-h)/2:100;
	
		settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';

		win=window.open(mypic,"",settings);
	}
	else {
		w=parseInt(windowWidth)+40;
		h=parseInt(windowHeight)+60;
		LeftPosition=(screen.width)?(screen.width-w)/2:100;
		TopPosition=(screen.height)?(screen.height-h)/2:100;
	
		settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';

		win=window.open("","",settings);
		with (win.document) {
			open("text/html", "replace");
			write("<html><head><title> "+titel+" </title>")
			write("<link rel=\"stylesheet\" type=\"text/css\" href=\""+kleur+".css\" />");
			write("<link rel=\"stylesheet\" type=\"text/css\" href=\"ZVL.css\" />");
			write("</head><body>");
			write("<div class=\"foto_center\"><img src="+mypic+"></div>");
			write("</body></html>");
			close();
		}
	}
}