function werk(sUrl,x,y,titel,jaar,soort,beschrijving,afmeting) {
	
	var w = parseInt(x) + 300;
	var h = parseInt(y) + 10;
	var l = (screen.width / 2) - (w / 2);
	var t = (screen.height / 2) - (h / 2);
	var options = 'directories=no,location=no,menubar=no,status=no,titlebar=no,toolbar=no,scrollbars=no,width='+w+',height='+h+',top='+t+',left='+l+',resizeable=no';
	
	var win = window.open(sUrl,null,options);

	win.document.writeln('<html><head><title>Aim&eacute;e van Waes | '+titel+'</title>');
	win.document.writeln('<link rel="stylesheet" media="screen" type="text/css" href="http://www.aimeevanwaes.com/shared/werk.css" />');
	win.document.writeln('<!--[if IE]><link rel="stylesheet" media="all" type="text/css" href="http://www.aimeevanwaes.com/shared/werk_ie.css" /><![endif]--></head>');
	win.document.writeln('<body bgcolor="#FFFFFF" leftmargin=10 topmargin=10 rightmargin=10 bottommargin=10>');
	win.document.writeln('<table><tr>');
	win.document.writeln('		<td><img src="'+sUrl+'" width="'+x+'" height="'+y+'" border="0"></td>');
	win.document.writeln('		<td width="275" valign="top" bgcolor="#FFFFFF" style="padding: 10px;">');
	win.document.writeln('			<h3>'+titel+'</h3><br />');
	win.document.writeln('			'+soort+'<br /><br />');
	win.document.writeln('			'+beschrijving+'<br /><br />');
	win.document.writeln('			'+afmeting+'<br /><br />');
	win.document.writeln('			'+jaar+'<br /><br />');
	win.document.writeln('			<br /><br /><br /><a href="javascript:top.close();">Close window</a>');
	win.document.writeln('		</td></tr></table>');
	win.document.writeln('</body></html>');
	win.document.close();
	win.focus();
	
}



