<!-- ;
function Pasfoto(pf, beschr) {
pic = window.open("", "pasfoto", "height=140,width=120,innerHeight=140,innerWidth=120,left=340,top=224,screenX=340,screenY=224");
pic.document.open("text/html");
pic.document.write("<HTML><HEAD><TITLE>", 'Foto', "</TITLE><LINK rel='stylesheet' type='text/css' href='stylesheet.css'></HEAD><BODY><CENTER><IMG src='", pf, "' alt='", beschr, "' title='", beschr,"'></CENTER></BODY></HTML>");
pic.document.close();
pic.focus();
}

function foto(th, soort, beschr) {
pic = window.open("", "naam", "width=318,height=244,left=230,top=50,outerwidth=342,outerheight=306,screenX=230,screenY=50,resizable");

pic.document.open("text/html");
pic.document.write("<HTML><HEAD><TITLE>", beschr, "</TITLE><LINK rel='stylesheet' type='text/css' href='stylesheet.css'></HEAD><BODY><CENTER><IMG src='", th, "' alt='", beschr, "' title='", beschr,"'></CENTER><CENTER><A href='javascript:window.close()'><U>Sluit dit venster</U></A></CENTER></BODY></HTML>");
pic.document.close();

if (soort == "n") {
pic.moveTo(230, 50);
pic.resizeTo(330, 300);
};
if (soort == "p") {
pic.moveTo(75, 50);
pic.resizeTo(630, 315);
};
if (soort == "c") {
pic.moveTo(75, 25);
pic.resizeTo(630, 575);
};
if (soort == "g") {
pic.moveTo(75, 25);
pic.resizeTo(630, 468);
};


pic.focus();
}
// -->