function htmlOpen(src,w,h) {
var okno = window.open(src,"gal","height="+h+",width="+w+",scrollbars=yes,status=yes,toolbar=no,menubar=no,location=no");
okno.focus();
}

function htmlPic(ParObr,w,h) {

	var source = "<html><head><title>Fotogalerie</title><style>html,body {margin:0px;}</style>\n</head><body onload='focus()'><img src='" + ParObr + "'></body></html>";
	winOpenWidth = w;
	winOpenHeight = h;
	winOpen = window.open('','gallery','height='+winOpenHeight+',width='+winOpenWidth+',scrolling=no');
	winOpen.document.write(source);
	winOpen.document.close();
}


