
function docheck()
{ 
if (document.loginForm.UsernameGet.value =="")
{
alert("请填写您的用户名！");
document.loginForm.UsernameGet.focus();
return false;
}
if (document.loginForm.UsernameGet.value.length<5) { 
alert("用户名长度不少于5个字符。"); 
document.loginForm.UsernameGet.focus();
document.loginForm.UsernameGet.select();
return false; 
} 
if (document.loginForm.UsernameGet.value.length>=16) { 
alert("用户名长度不超过16个字符。"); 
document.loginForm.UsernameGet.focus();
document.loginForm.UsernameGet.select();
return false; 
} 
if (document.loginForm.PasswordGet.value =="") 
{
alert("请填写您的密码！");
document.loginForm.PasswordGet.focus();
return false; 
}
var filter=/^\s*[.A-Za-z0-9_-]{5,15}\s*$/;
if (!filter.test(document.loginForm.PasswordGet.value)) { 
alert("密码填写不正确,请重新填写！可使用的字符为（A-Z a-z 0-9 _ - .)长度不小于5个字符，不超过15个字符，注意不要使用空格。"); 
document.loginForm.PasswordGet.focus();
document.loginForm.PasswordGet.select();
return false; 
} 
loginForm.submit();
return true;
}
function show_sader(mylink)
{
window.open(mylink,'','top=140,left=135,width=480,height=280,scrollbars=yes')
}