novy_okno = "okno";
function nove_okno (co, jmeno, jak) {
  if(typeof(novy_okno) != 'string') {
    novy_okno.close();
  }

	features  = jak + ',toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,scrollbars=0';
  novy_okno = window.open("", jmeno, jak+',toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
	with (novy_okno) {
		window.moveTo(53,60);
		document.open();
		document.write ("<html>\n <head>\n  <title>:: Image Detail ::</title>\n </head>\n");
		document.write (" <body bgcolor=\"#EEF4F4\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\" leftmargin=\"0\">\n");
		document.write ("  <table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n   <tr>\n");
		document.write ("    <td align=\"center\" valign=\"middle\"><a href=\"javascript:window.close();\"><img src=\"" + co + "\" border=\"0\"></a><td>\n");
		document.write ("   </tr>\n  </table>\n");
		document.write (" </body>\n</html>");
		document.close();
		window.focus();
	}
}

function check_email (adresa) {
  if (!adresa || ((adresa.indexOf("@") == -1) || (adresa.indexOf(".") == -1))) {
    window.alert("Please, enter correct e-mail address!");
    return false;
  }
  else {
    return true;
  }
}
