function vensteropenen (imagenr,width,height){	venster = window.open('', 'venster', 'width=' + width +',height=' + height +',toolbar=no,location=no,status=no,resizable=no,menubar=no,scrollbars=no');venster.document.open();venster.document.write('<html><head>\n');venster.document.write('<title>CactiInfo - ' + cacti + '</title></head>\n');venster.document.write('<body background="images/image' + imagenr + '.jpg">');venster.document.write('<table width="100%" height="100%" border="0">');venster.document.write('<form><tr><td valign="bottom"><div align="center">');venster.document.write('<input type="button" value="Close this window" onClick="window.close()">');venster.document.write('</div></td></tr></form></table>');venster.document.write('</body></html>\n');venster.document.close();}
