var In={};

In.protectPassword=function(f){
	if (!formCheck(f)) return false;
	f.password.value=hex_md5(f.password.value);
	return true;
}

