
<!--
function EW_checkMyForm(EW_this) {
	
if (EW_this.tour && !EW_hasValue(EW_this.tour, "SELECT" )) {
	if (!EW_onError(EW_this, EW_this.tour, "SELECT", "Please select a tour"))
		return false;
}

if (EW_this.mnth && !EW_hasValue(EW_this.mnth, "SELECT" )) {
	if (!EW_onError(EW_this, EW_this.mnth, "SELECT", "Please select a month"))
		return false;
}

if (EW_this.pax1 && !EW_hasValue(EW_this.pax1, "SELECT" )) {
	if (!EW_onError(EW_this, EW_this.pax1, "SELECT", "Please select number of passengers"))
		return false;
}

return true;
}

function  EW_checkMyForm2(EW_this) {
	
	if (EW_this.tr_dt_day && !EW_hasValue(EW_this.tr_dt_day, "SELECT" )) {
            if (!EW_onError(EW_this, EW_this.tr_dt_day, "SELECT", "please select day"))
                return false; 
        }
		
			if (EW_this.tr_dt_mnth && !EW_hasValue(EW_this.tr_dt_mnth, "SELECT" )) {
            	if (!EW_onError(EW_this, EW_this.tr_dt_mnth, "SELECT", "please select month"))
                	return false; 
        }
		
			if (EW_this.tr_dt_yr && !EW_hasValue(EW_this.tr_dt_yr, "SELECT" )) {
            	if (!EW_onError(EW_this, EW_this.tr_dt_yr, "SELECT", "please select year"))
                	return false; 
        }
		
		
		
if (EW_this.pax2 && !EW_hasValue(EW_this.pax2, "SELECT" )) {
            if (!EW_onError(EW_this, EW_this.pax2, "SELECT", "please select number of passengers"))
                return false; 
        }


return true;
}
//-->

