
var errfound = false;
//function to validate by length
function ValidLength(item, len) {
   return (item.length > len);
}
// komunikat o bledzie
function error(elem, text) {
// abort if we already found an error
   if (errfound) return;
   window.alert(text);
   errfound = true;
}
//srawdzenie czy wprowadzono nazwe dla galerii
function Validate() {
	errfound = false;
  	if (!ValidLength(document.dodaj.login.value,0))
   		error(document.dodaj.login,"Wpisz poprawnie login");
	if (!ValidLength(document.dodaj.haslo.value,0))
   		error(document.dodaj.haslo,"Wpisz hasło");
 	return !errfound; /* true if there are no errors */
}

