	<!--
	function over(mailod)
	{
		if (mailod.indexOf("@")==-1)
		{
			window.alert("Nezadali jste e-mail.\n"
		+ "Nemůžeme Vám odepsat!");
			return false;
			}
		 else return true;
	}
	
	function bezrobotu(kontrola,mailod,co)
	{
		if (kontrola.indexOf("<")>=0||kontrola.indexOf(">")>=0||kontrola.indexOf("[")>=0||kontrola.indexOf("]")>=0||kontrola.indexOf("href")>=0)
    	{
    	    window.alert("Text obsahuje nepovolené znaky.\n"
		      + "< > [ ] nebo href");
          return false;
   			}
    			else if (mailod.indexOf("@")==-1)
          {
          window.alert("Nezadali jste e-mail.\n"
		      + "Nemůžeme Vám odepsat!");
			     return false;
          }
          else if (mailod.indexOf("\\")>-1)
          {
            window.alert("Tak to bychom si nerozuměli. Žádný spam!\n");
            return false;
          }
          else if (co=="")
          {
          window.alert("Nic jste nám nenapsali.\n"
		      + "Je to správně?");
			     return false;
          }
          else
          //window.alert("Mail byl prijat a bude odeslan");
          return true;
 	}
 	//-->
