function show(name,width,height) {
		
	no=window.open('', 'zoomv', 'width='+width+', height='+height+', toolbar=no, menubar=no,'+
				'scrollbars=no, resizable=no, copyhistory=no');
	with (no.document)
	{
		open();
		writeln("<html>\n<title>Fotogalerie</title>\n<body topmargin='0' leftmargin='0' rightmargin='0' bottommargin='0' bgcolor='#000000'>\n<center>");
		writeln('<img style="cursor: hand; cursor: pointer;" src='+name+' border="0" onclick="window.close()"></a>');
		writeln("</center>\n</body>\n</html>");
		close();
	}
} 

