function doLogin(f)
{ 
	f['md5'].value = hex_hmac_md5(f['id'].value, hex_md5(f['pass'].value));
	f['pass'].value = '';
	return true;
} 
