function NoneWithCheck(ss) {
for(var i = 0; i < ss.length; i++) {
	if(ss[i].checked) { return false; }
	}
return true;
}

function Form_Validator(F) {
  if (NoneWithCheck(F.amount)) {
	alert("Select the monthly plan.");
    	return (false);
  }
//  if (F.email.value =="") {
//	alert("Enter your email address.");
//    	F.email.focus();
//    	return (false);
//  }
  return (true);
}


