//*************************************************************//
//pomucka pro target _blank v xhtml strict
//pouziti: vsude
function newWindow(url)
{
	windowRef = window.open(url,"nove","");
	wasOpen = false;
	if (typeof(windowRef) == "object")
	{
		wasOpen = true;
	}
	return wasOpen;
}	

//****************************************************//
//otevreni okna s obrazkem
//pouziti: veskere pripojene obrazky tzv. male fotogalerie
function otevri_okno(obrazek, popisek)
{
	var win=window.open("","nazev","width=600,height=600,menubar=no,toolbar=no");
	win.document.write("<html><head><title>Detail</title>");
   win.document.write('<link href="'+window_func_style_path+'" type="text/css" rel="stylesheet" /></head>');
	win.document.write("<body style='font-family: Verdana;' class='new-window'><table width='100%' height='100%'><tr><td style='font-size: 11px;' valign='middle' align='center'><a href='javascript:window.close()'><img style='margin-bottom: 5px;' src='"+obrazek+"' border='0' /></a>");
   if (popisek) {
      win.document.write('<br />'+popisek);      
   }
	win.document.write("</td></tr></table></body></html>");
}

