<!--
function EW_checkInquiryForm(EW_this) {

if (EW_this.person && !EW_hasValue(EW_this.person, "TEXT")) {
	if (!EW_onError(EW_this, EW_this.person, "TEXT", "Please enter required field - No. of Person"))
		return false;
}

if (EW_this.name && !EW_hasValue(EW_this.name, "TEXT")) {
	if (!EW_onError(EW_this, EW_this.name, "TEXT", "Please enter required field - Name"))
		return false;
}


if (EW_this.email && !EW_hasValue(EW_this.email, "TEXT")) {
	if (!EW_onError(EW_this, EW_this.email, "TEXT", "Please enter required field - Email"))
		return false;
}
if (EW_this.email && !EW_checkemail(EW_this.email.value)) {
	if (!EW_onError(EW_this, EW_this.email, "TEXT", "Please enter your email adress"))
		return false; 
}

if (EW_this.address && !EW_hasValue(EW_this.address, "TEXT")) {
	if (!EW_onError(EW_this, EW_this.address, "TEXT", "Please enter required field - Address"))
		return false;
}

if (EW_this.country && !EW_hasValue(EW_this.country, "TEXT")) {
	if (!EW_onError(EW_this, EW_this.Country, "TEXT", "Please enter required field - Country"))
		return false;
}


return true;
}

//-->

