// 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.email && !EW_hasValue(EW_this.email, "TEXT" )) {

            if (!EW_onError(EW_this, EW_this.email, "TEXT", "Va Rugam introduceti adresa de email!"))

                return false; 

        }

if (EW_this.email && !EW_checkemail(EW_this.email.value)) {

        if (!EW_onError(EW_this, EW_this.email, "TEXT", "Adresa de email e incorecta!"))

            return false; 

        }
				if (EW_this.msisdn && !EW_hasValue(EW_this.msisdn, "TEXT" )) {

            if (!EW_onError(EW_this, EW_this.msisdn, "TEXT", "Introduceti Numarl de Telefon!"))

                return false; 

        }

		return true;

}

// end JavaScript -->


