function radio(id) {
	this.god(id);
}

copyPrototype(radio, god);



radio.prototype.onValidate = function(){
	return god.prototype.onValidate.apply(this) && true;
}
