function opengfxwin(file,width,height,titl,alt){
	widthinfo="width=" + (width + 40);
	heightinfo=",height=" + (height + 80);
	gfxwin=window.open("", "", 'toolbar=no,location=no,directories=no,menubar=no,status=no,scrollbars=no,resizable=no,marginwidth=0,marginheight=0,' + widthinfo + heightinfo);
	contents=
	"<html>" +
	"<head>" +
	"<title>Waterfall akvarisztika</title>" +
	"</head>" +
	"<body bgcolor='White' text='#324395' topmargin=5 leftmargin=0>" +
	"<table align='center' border='0' cellpadding='0' cellspacing='5' width='100%'>" +
	"	<tr align='center'>" +
	"		<td><font face='Arial' size='2'><b>" + titl + "<br><font size='1'>" + alt + "</font></td>" +
	"	</tr>" +
	"	<tr>" +
	"		<td height='10'></td>" +
	"	</tr>" +
	"	<tr align='center'>" +
	"		<td><img src='" + file + "' width=" + width + " height=" + height + "></td>" +
	"	</tr>" +
	"</table>" +
	"</html>"

	gfxwin.document.write(contents);
}
