function checkformWebName() {
if (isNumberString(mlogin.musr.value,"1234567890")!=1 || mlogin.musr.value.length!==5) {
alert("\请输入正确的会员ID")
return false;
}
return true;
}
function isNumberString(InString,RefString)
{
if(InString.length==0) return (false);
for (Count=0; Count < InString.length; Count++)  {
	TempChar= InString.substring (Count, Count+1);
	if (RefString.indexOf (TempChar, 0)==-1)  
	return(false);
}
return(true);
}
document.write("<table border='0' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#111111' width='100%' >")
document.write("<form target=_blank method='post' action='http://www.e-jwm.com/member/login.asp' name='mlogin' onSubmit='return checkformWebName()'>")
document.write("          <tr>")
document.write("          <td ><div align='right' class='ft1'> &nbsp;会员ID</div></td>")
document.write("          <td ><INPUT type='text' class='box1' maxLength=18 size=7 name=musr style='font-size: 9pt; font-family: 宋体'></td>")
document.write("          <td ><div align='right' class='ft1'>密码</div></td>")
document.write("          <td ><INPUT type='password' class='box1' maxLength=18 size=8 name=mpaw style='font-size: 9pt; font-family: 宋体'></td>")
document.write("          <td ><input type='submit' value='登录' name='B1' style='border-style: ridge; border-width: 0; background-color: #FFFF00; font-family:宋体; font-size:9pt'></td>")
document.write("          <td >&nbsp; <a target='_blank' href='http://www.e-jwm.com/member/join/reg.asp?place=5' class='ft1'>")
document.write("          注册</a></td>")
document.write("        </tr></form></table>")
