// otvaranie okien s obrazkami
function picWin(location,picWidth,picHeight,comment,description) {

	if (!document.getElementById) {
		upgrade = window.alert("http://www.webstandards.org/upgrade/pr.html");
		return;
	}

	//if (picWidth < 100) {picWidth = 100}
	//if (picHeight < 100) {picHeight = 100}

    availHeight = screen.height;
    availWidth = screen.width;

    wHeight = picHeight;
    wWidth = picWidth;
    if (availHeight < picHeight) {posTop = 0; wHeight = availHeight; }
    else {posTop = (availHeight - picHeight)/2;}

    if (availWidth < picWidth) {posLeft = 0; wWidth = availWidth}
    else {posLeft = (availWidth - picWidth)/2;}

    atts = "width=" + wWidth + ",height=" + wHeight + ",directories=0,location=0,menubar=0,resizable=0,scroll=auto,status=0,toolbar=0,top=" + posTop + ",left=" + posLeft;        
    win4Pic = window.open('','win4Pic',atts);

    win4Pic.document.open();
    win4Pic.document.writeln("<html><head><title>" + comment + "</title><script>init=false;</script></head><body marginwidth='0' marginheight='0' leftmargin='0' topmargin='0' onLoad='self.focus()' onBlur='self.close();'>");
if (description) {
	win4Pic.document.writeln("<table cellpadding='0' cellspacing='0' border='0' width='100%' height='100%'><tr><td align='center' valign='middle'><a href='#' onClick='self.close()' onMouseOver='if (init) {document.getElementById(\"popiska\").style.visibility=\"visible\"}' onMouseOut='if (init) {document.getElementById(\"popiska\").style.visibility=\"hidden\"}'><img src='" + location + "' border='0' width='" + picWidth + "' height='" + picHeight + "' alt='zavri okno'></a></td></tr></table>");
	win4Pic.document.writeln("<div id='popiska' style='position:absolute; left:0px; top:0px; background:#FFFFFF; border-bottom:1px solid #000000; width:" + picWidth + "px; font-family:Verdana,Arial,Helvetica,sans-serif; font-size:12px; padding:5px; visibility:hidden'><b>" + comment + "</b><br>" + description + "</div>");
} else {
	win4Pic.document.writeln("<table cellpadding='0' cellspacing='0' border='0' width='100%' height='100%'><tr><td align='center' valign='middle'><a href='#' onClick='self.close()' ><img src='" + location + "' border='0' width='" + picWidth + "' height='" + picHeight + "' alt='zavri okno'></a></td></tr></table>");
}
//		if (!description) {win4Pic.document.writeln("<div id='popiska' style='position:absolute; left:0px; top:0px; background:#FFFFFF; border-bottom:1px solid #000000; width:" + picWidth + "px; font-family:Verdana,Arial,Helvetica,sans-serif; font-size:12px; padding:5px; visibility:hidden'>" + comment + "</div>");}
//		else {win4Pic.document.writeln("<div id='popiska' style='position:absolute; left:0px; top:0px; background:#FFFFFF; border-bottom:1px solid #000000; width:" + picWidth + "px; font-family:Verdana,Arial,Helvetica,sans-serif; font-size:12px; padding:5px; visibility:hidden'><b>" + comment + "</b><br>" + description + "</div>");}
	win4Pic.document.writeln("<script>init=true;</script>");
	win4Pic.document.writeln("</body></html>");
    win4Pic.document.close();
}
