// JavaScript Document
<!-- start Javascript

function  EW_checkMyForm(EW_this) {
	
	if (EW_this.nume && !EW_hasValue(EW_this.nume, "TEXT" )) {

            if (!EW_onError(EW_this, EW_this.nume, "TEXT", "Introduceti Numele!"))

                return false; 

        }
		if (EW_this.prenume && !EW_hasValue(EW_this.prenume, "TEXT" )) {

         if (!EW_onError(EW_this, EW_this.prenume, "TEXT", "Introduceti Prenumele!"))

                return false; 

        }
		
				if (EW_this.telefon && !EW_hasValue(EW_this.telefon, "TEXT" )) {

         if (!EW_onError(EW_this, EW_this.telefon, "TEXT", "Introduceti telefonul!"))

                return false; 

        }



if (EW_this.localitate && !EW_hasValue(EW_this.localitate, "TEXT" )) {

            if (!EW_onError(EW_this, EW_this.localitate, "TEXT", "Introduceti localitatea!"))

                return false; 

        }

if (EW_this.security_code && !EW_hasValue(EW_this.security_code, "TEXT" )) {
            if (!EW_onError(EW_this, EW_this.security_code, "TEXT", "Codul din imaginea de verificare lipseste!"))
                return false; 
        }

		return true;

}

// end JavaScript -->


