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

copyPrototype(password, god);

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