function popup(name,width,height)
		{
			var popup = window.open("","Images","width=" + width + ",height=" + height + ",toolbar=0, status=0, menubar=0, resizable=1, scrollbars=no, directories=0, dependent=yes");
			popup.resizeTo(width,height);
			popup.document.open();
			popup.document.write("<html><title>&copy; René Blom</title><body bgcolor='#000000' bottommargin=0 rightmargin=0 leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><table width='100%' height='100%' border=0 cellspacing=0 cellpadding=0><tr><td align='center' valign='middle'><a href='javascript:self.close();'><img src='" + name + " 'border=0 alt='Click to close.'></a></td></tr></table></body></html>");
			popup.document.close();
			popup.moveTo((screen.width-width)/4, (screen.height-height)/4); 
			popup.focus()
		}