
function open_window(url)
{
	okno = window.open(url,"nazev","width=600,height=560,menubar=no,toolbar=no,scrollbars=yes,resizable=yes");
	wasOpen = false;
	if (typeof(okno) == "object"){
	wasOpen = true;
	}
	return wasOpen;
}

function open_image(image)
{
	var win=window.open("","Fotografie","width=800,height=550,menubar=no,toolbar=no,scrollbars=yes");
	win.focus();
	win.document.open();
	win.document.write("<html><head><title>Detail fotografie</title></head><body bgcolor='#F5F5F5' background='_images/body_bg.gif'>");
	win.document.write("<table width='100%' height='100%'><tr><td valign='middle' align='center'><a href='javascript:window.close()'><img src='"+image+"' border='0' alt='Kliknutím na obrázek zavřete okno' /></td></tr></table>");
	win.document.write("</body></html>");

}
function check_writeus_form()
{
  with(document.form){
   	if(name.value=="" || text.value==""){
		alert("Vyplňte prosím všechny povinné údaje.");
		return false;
	}			
	if((email.value.length<=5) || (email.value.indexOf('@')==-1)) {
		alert("Vaše emailová adresa není zadána správně!")
		return false;
	}
  }
  return true;
}


