
$(function(){randImage();$('.changeimg').click(function(){randImage();});function randImage(){$('#randimg').attr('width',60);$('#randimg').attr('height',25);$('#randimg').css('display','inline-block');$('#randimg').attr("src","http://passport.wanmei.com/servlet/GetRandomImg?r="+Math.random());}
function login(){var username=$('form[name=wmlogin] input[name=username]').val();if(username==''){alert("请输入登录用户名");return;}
var passwd=$('form[name=wmlogin] input[name=passwd]').val();if(passwd==''){alert("请输入密码");return;}
var rand=$('form[name=wmlogin] input[name=rand]').val();if(rand==''){alert("请输入验证码");return;}
var macval=hex_hmac_md5(rand.toLowerCase(),str_md5(username+passwd));$('form[name=wmlogin] input[name=macval]').val(macval);document.wmlogin.submit();}
$('form[name=wmlogin] input[name=login]').click(function(){login();});$('form[name=wmlogin] input[name=reg]').click(function(){document.location="http://passport.zongheng.com/reg.do";});$('form[name=wmlogin] input[name=regauthor]').click(function(){document.location="http://passport.zongheng.com/regauthor.do";});$('form[name=wmlogin] input[name=rand]').keyup(function(event){if(event.keyCode==$.ui.keyCode.ENTER){login();}});});