<!--//

function openwindow(img,width,height,sTitle){
		  okno = window.open("","okno","status=no,menubar=no,directories=no,location=no,scrollbars=auto,resizable=yes,left=50,top=50,toolbar=0");
if(!sTitle || sTitle=="") sTitle = "Detail";

with(okno.document)
{
open();
writeln("<html>");
writeln("<head><title>"+sTitle+"</title>\n");
writeln("<script language='JavaScript'>");
writeln("<!--\n");
writeln("function uprav_rozmery_okna()\n{");
writeln(" img = document.getElementById('obr');");
writeln(" w_width = img.width + 40; w_height = img.height + 110;");
writeln(" window.resizeTo(w_width,w_height);");
writeln("}\n\n//-->");
writeln("</scr"+"i"+"pt></head>\n");
writeln("<body style='background: #F4FBFF;' topmargin='0' leftmargin='0' align='center' onload='uprav_rozmery_okna()'>");
writeln("<div style='margin: 8px;padding:5px;align: center;border: 1px solid #D4D0C8;'><a href='#' onclick='window.close();' title='Close window'><img border='0' src='"+img+"' id='obr' /><br /><span style='font-family:verdana;font-size:11px;'>Close window</span></a></div>");
writeln("</bo"+"d"+"y></ht"+"m"+"l>");
close();
}

okno.focus();
		}

//-->



