function openWindow(pic,breedte,hoogte,naam) {

	winStats='toolbar=no,location=no,directories=no,menubar=no,scrollbars=no';
	winStats+=',width=' + breedte + ',height=' + hoogte;
	winStats+=',left=10,top=25';

	floater=window.open("","",winStats);
	floater.document.open();
	floater.document.writeln ('<html><head><title>Smits - Foto</title><link href="smits.css" rel="stylesheet" type="text/css"></head><body bgcolor="#515b61"><p class="poptitle">'+ naam +'</p>');
	floater.document.writeln ('<br/><h2>&nbsp;&nbsp;&nbsp;Bvba Smits voegwerken</h2>');
	floater.document.writeln ('<a href="javascript:window.close();"><center><img src="' + pic + '" border="0"></center></a>');
	floater.document.writeln ('<br/><h2 align="center">Klik om venster te sluiten </h2>');
	floater.document.writeln ('</body></html>');
	floater.document.close();
	floater.focus();
	}

