function EW_checkMyFormVote(EW_this) {

if (EW_this.x_USB_Internet && !EW_hasValue(EW_this.x_USB_Internet, "RADIO" )) 

if (EW_this.x_Pay_Internet && !EW_hasValue(EW_this.x_Pay_Internet, "RADIO" )) 

if (EW_this.x_Dual_Mode && !EW_hasValue(EW_this.x_Dual_Mode, "RADIO" )) 

if (EW_this.x_PostPaid_Bill && !EW_hasValue(EW_this.x_PostPaid_Bill, "RADIO" )) {

	if (!EW_onError(EW_this, EW_this.x_PostPaid_Bill, "RADIO", "...........Please take a poll, then submit your vote..."))
		return false;
}
return true;
}


function EW_checkMyFormNews(EW_this) {
if (EW_this.x_Name && !EW_hasValue(EW_this.x_Name, "TEXT" )) {
	if (!EW_onError(EW_this, EW_this.x_Name, "TEXT", "Please enter required field - Name"))
		return false;
}
if (EW_this.x_Email && !EW_hasValue(EW_this.x_Email, "TEXT" )) {
	if (!EW_onError(EW_this, EW_this.x_Email, "TEXT", "Please enter required field - Email"))
		return false;
}
if (EW_this.x_Email && !EW_checkemail(EW_this.x_Email.value)) {
	if (!EW_onError(EW_this, EW_this.x_Email, "TEXT", "Incorrect email - Email"))
		return false; 
}
if (EW_this.x_Retype_Email && !EW_hasValue(EW_this.x_Retype_Email, "TEXT" )) {
	if (!EW_onError(EW_this, EW_this.x_Retype_Email, "TEXT", "Please enter required field - Retype Email"))
		return false;
}
if (EW_this.x_Retype_Email && !EW_checkemail(EW_this.x_Retype_Email.value)) {
	if (!EW_onError(EW_this, EW_this.x_Retype_Email, "TEXT", "Incorrect email - Retype Email"))
		return false; 
}
if (EW_this.x_Retype_Email.value != EW_this.x_Email.value ) {
	if (!EW_onError(EW_this, EW_this.x_Retype_Email, "TEXT", "Please re-type your email address..again."))
		return false; 
}
return true;
}
