document.writeln("
| "); document.writeln(" 用户名:"); document.writeln(" <\/td>"); document.writeln(" | "); document.writeln(" 密 码:"); document.writeln(" <\/td>"); document.writeln(" | "); document.writeln(" 验证码: "); document.writeln(" | ");
document.writeln(" | "); document.writeln(" "); document.writeln(" "); document.writeln(" <\/td>"); document.writeln(" <\/tr>"); document.writeln("<\/table>"); document.writeln("") function login_hor() { var username=document.getElementById('tx_username_hor').value; var password=document.getElementById('tx_password_hor').value; var checkcode=document.getElementById('tx_checkcode_hor').value; username=escape(username); checkcode=escape(checkcode); var url="http://www.pkone.cn/loginservice_remote.aspx?username="+username+"&password="+password+"&checkcode="+checkcode+ "&ReturnUrl=/login_wait.aspx%3Fusername="+username+"%26password="+password; //alert(url); window.location.href=url; } function register_hor() { window.location.href="http://www.pkone.cn/register.aspx"; } function regfocus_hor() { //alert('haha'); var but_sign=document.getElementById ('but_login_hor'); but_sign.focus(); } |