/// KOntrola ci su vsetky udaje zadane ////////////////////////////////////
/// NASTAVENIA ///////////////////////
var error_mail = 'Zadajte Vašu e-mailovú adresu!';

////////////////////*** KONTROLA ***///////////////////////////////////////
function kontrolamail() {

   if ((document.lost_pass.lostmail.value.indexOf('.')== -1) || (document.lost_pass.lostmail.value.indexOf('@')<1)){
		alert(error_mail);
		document.lost_pass.lostmail.focus();
		return false;
		}

}


