var imageWindow; 
function ImgWin(src,width,height,print){ 
	var scroll='no';
	if (print==true)
	{	var w=20;	var h=20;	}
	else{ var w=20;	var h=0;		}

	if( height>600 ) { w = w+width; h=600; scroll='yes'; }
	else { w=width; h=h+height; scroll='no'; }

	if(imageWindow)
		imageWindow.close(); 
	imageWindow=window.open("","blankImageWindow", 'status=no,scrollbars='+scroll+',resizable=0,width='+w+',height='+h+''); 
	imageWindow.document.write("<html><head><title>Мир аквариума</title>"); 
	imageWindow.document.write("<body topmargin=0 marginheight=0 leftmargin=0 marginwidth=0 bgcolor=white text=black link=black alink=black vlink=black>"); 
	imageWindow.document.write("<center>"); 
	imageWindow.document.write("<table border=0 cellspacing=0 cellpadding=0 bgcolor=#333399>"); 
	imageWindow.document.write("<tr><td align=center bgcolor=white>"); 
	imageWindow.document.write("<a href='javascript:self.close();' title='закрыть окно'><img src='"+src+"' width="+width+" height="+height+" border=0></a>"); 
	if (print==true)
		imageWindow.document.write("</td></tr><tr><td align='center'><a style='color: #FFFFFF;' href='javascript:self.print();'>Распечатать</a></td></tr>"); 
	else
		imageWindow.document.write("</td></tr>"); 
	imageWindow.document.write("</table>"); 
	imageWindow.document.write("</body></html>"); 
	imageWindow.document.close(); 
	imageWindow.focus(); 
} 
