 	function ImageWindow(image,img_width,img_height,img_title)
 	{ 		
 		img_width=img_width+25;
 		img_height=img_height+40;
 		
 		okno=window.open("","_blank","status=0,width="+img_width+",height="+img_height+",resizable=1");
 		
 		okno.document.write("<html><head><title>Fotogalerie</title><link rel='StyleSheet' href='style.css' type='text/css'></head><body style=>");
 		okno.document.write("<p style='margin-top:10px;'><img src='"+image+"'><br clear='all'>"+img_title);
 		okno.document.write("</body></html>");
 	}