var loginBox='';
loginBox+='
会员登陆
';
loginBox+=' ';
document.writeln(loginBox);
//验证码
try{
var pvc=document.getElementById("pic_vcode");
pvc.src="/include/num.asp?"+(new Date()).toString();
}catch(e){
window.status="登录验证码无法加载,请刷新重试!";
}
function checkLoginBox(frm){
with(frm){
if(Username.value.length<=0){alert("请输入登录用户名");Username.focus();return false;}
if(Password.value.length<=0){alert("请输入登录密码");Password.focus();return false;}
if(vCode.value.length<=0){alert("请输入验证码");vCode.focus();return false;}
if(!(MemberType[0].checked || MemberType[1].checked)){alert("请选择会员类型");return false;}
return true;
}
}