function popupPlattegrond(kaartje,naam_venster) {
window.open(kaartje,naam_venster,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,copyhistory=no,width=600,height=430");
}
function popupPlaatje(plaatje,alt,h,w) {
w=parseInt(w);
h=parseInt(h);
url="/plaatje.php?plaatje="+plaatje+"&alt="+alt+"&w="+w+"&h="+h+"";
if (w == 400) {
window.open(url,"foto_venster","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,copyhistory=no,width=500,height=400");
}
else if (w == 300) {
window.open(url,"foto_venster","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,resizable=yes,copyhistory=no,width=400,height=500");
}
else {
alert('Niet de goede afmetingen.');
}
}