// JavaScript Document

function  EW_checkMyForm(EW_this) {

if (EW_this.email && !EW_hasValue(EW_this.email, "TEXT" )) {

            if (!EW_onError(EW_this, EW_this.email, "TEXT", "Please insert your e-mail adresss"))

                return false; 

        }

if (EW_this.email && !EW_checkemail(EW_this.email.value)) {

        if (!EW_onError(EW_this, EW_this.email, "TEXT", "Please insert your e-mail adresss"))

            return false; 

        }

if (EW_this.message && !EW_hasValue(EW_this.message, "TEXT" )) {

            if (!EW_onError(EW_this, EW_this.message, "TEXT", "Please write your message"))

                return false; 

        }
						if (EW_this.security_code && !EW_hasValue(EW_this.security_code, "TEXT" )) {
            if (!EW_onError(EW_this, EW_this.security_code, "TEXT", "Validation code is missing!"))
                return false; 
        }


		return true;

}

