<!--
function display_image(name) {
var x = 5;
var y = 5;
PreView = window.open("", "Preview",
"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=600,height=600");
PreView.moveTo(x,y);
PreView.document.open();
PreView.document.write("<HTML><HEAD>");
PreView.document.write("<TITLE>galeria zdjêæ</TITLE></HEAD>");
PreView.document.write("<BODY BGCOLOR=#FFFFFF>");
PreView.document.write("<IMG SRC='" + name + "'>");
PreView.document.write("</BODY></HTML>");
PreView.document.close();
}

function Okno(url,w,h)
{
	if(w=='' || h=='') {
	w = 500;
	h = 450;
	}
	window.open(url,'Okno','width=' + w + ',height=' + h + ',resizable=0,scrollbars=no,menubar=no,left=5,fullscreen=no,top=5' );

}
-->
