function getElementsByTagClassName(tagName, className) {
  var arr = new Array();
  var col = window.document.getElementsByTagName(tagName);
  for (var colIndex = 0; colIndex < col.length; colIndex++) {
    if (col[colIndex].className == className) {
      arr.push(col[colIndex]);
    }
  }
  return arr;
}

function check_writeus_form() {
  with(document.form){
   	if(name.value=="" || surname.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;
}

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 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;
}




