
<!--
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;
}




function EW_checkTellForm(EW_this) {

if (EW_this.tyname && !EW_hasValue(EW_this.tyname, "TEXT")) {
	if (!EW_onError(EW_this, EW_this.tyname, "TEXT", "Please enter required field - Your Name"))
		return false;
}

if (EW_this.tyemail && !EW_hasValue(EW_this.tyemail, "TEXT")) {
	if (!EW_onError(EW_this, EW_this.tyemail, "TEXT", "Please enter required field - Your Email"))
		return false;
}
if (EW_this.tyemail && !EW_checkemail(EW_this.tyemail.value)) {
	if (!EW_onError(EW_this, EW_this.tyemail, "TEXT", "Please enter your email adress"))
		return false; 
}


if (EW_this.tfname && !EW_hasValue(EW_this.tfname, "TEXT")) {
	if (!EW_onError(EW_this, EW_this.tfname, "TEXT", "Please enter required field - Friends Name"))
		return false;
}

if (EW_this.tfemail && !EW_hasValue(EW_this.tfemail, "TEXT")) {
	if (!EW_onError(EW_this, EW_this.tfemail, "TEXT", "Please enter required field - Friends Email"))
		return false;
}
if (EW_this.tfemail && !EW_checkemail(EW_this.tfemail.value)) {
	if (!EW_onError(EW_this, EW_this.tfemail, "TEXT", "Please enter your email adress"))
		return false; 
}


return true;
}

//-->

