function show_flash() {
   document.getElementById('div_flash').style.display = 'block';
}
function hide_flash() {
   var flash = document.getElementById('flash_obj');
   var close = document.getElementById('flash_close');
   var div = document.getElementById('div_flash');
   div.style.display = 'none';
   var clone1 = flash.cloneNode(true);
   flash.parentNode.removeChild(flash);
   var clone2 = close.cloneNode(true);
   close.parentNode.removeChild(close);
   div.appendChild(clone1);
   div.appendChild(clone2);
}

//test vyhledavaciho formulare	
function validate_search(form) {
   if(form.key_words.value=='' || form.key_words.value.length<2) {
      alert('Nebylo zadáno slovo pro hledání (min. 3 znaky)');
      form.key_words.focus();
      return false;
   }
   return true;
}

//*************************************************************//
//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" />');
   win.document.write('<link href="'+window_func_common_style_path +'" type="text/css" rel="stylesheet" /></head>');
	win.document.write("<body class='new-window'><table width='100%' height='100%'><tr><td valign='middle' align='center'><a href='javascript:window.close()'><img src='"+obrazek+"' border='0' alt='"+popisek+"' /></a>");
   if (popisek) {
      win.document.write('<br /><div class="new-window-text">'+popisek+'</div>');      
   }
	win.document.write("</td></tr></table></body></html>");
   win.document.close();
   win.focus();
}


//****************************************************//
//otevreni okna s obrazkem pro fotogalerii
function gallery_window(obrazek, jmeno, popis)
{
	var win=window.open("","nazev","width=600,height=680,menubar=no,toolbar=no,scrollbars=yes");
	win.document.write("<html><head><title>"+jmeno+"</title>");
   win.document.write('<link href="'+window_func_style_path+'" type="text/css" rel="stylesheet" />');
   win.document.write('<link href="'+window_func_common_style_path +'" type="text/css" rel="stylesheet" /></head>');
	win.document.write('<body class="new-window">');
   win.document.write("<table width='100%' height='100%'><tr><td valign='middle' align='center'>");
 	if (jmeno) win.document.write('<div class="gallery-window-name">'+jmeno+'</div>');
   win.document.write("<a href='javascript:window.close()'><img src='"+obrazek+"' border='0' alt='"+jmeno+"' /></a>");
	if (popis) win.document.write('<br /><div class="gallery-window-text">'+popis+"</div>");
   win.document.write("</td></tr></table></body></html>");
   win.document.close();
   win.focus();
}


//****************************************************//