function view(picname)
{
var absdir = 'images/';
var wwidth = 640
var wheight = 480;
var bigpicname = absdir+picname;
ShowWindow = window.open('','','width='+wwidth+',height='+wheight+',resizable=yes');
ShowWindow.moveTo((screen.width-wwidth)/2,(screen.height-wheight)/2);
ShowWindow.document.open();
ShowWindow.document.write("<html><head><title> - Klik om het venster te sluiten</title><meta HTTP-EQUIV='imagetoolbar' content='no'></head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><a href='javascript:close()'><img src='"+ bigpicname +"' onload='window.resizeTo(this.width+12,this.height+31);window.moveTo((screen.width-this.width)/2,(screen.height-this.height)/2)' border='0'></a></body></html>");
ShowWindow.document.close();
}

function view2(url)
{
var wwidth = 640
var wheight = 480;
ShowWindow = window.open(url,'','width='+wwidth+',height='+wheight+',resizable=yes');
ShowWindow.moveTo((screen.width-wwidth)/2,(screen.height-wheight)/2);
}