// JavaScript Document

PassportScore.showLoginForm = function ()
{
	html =	'<table border="0" width="100%" cellpadding="0" cellspacing="0" style="position: relative;z-index:100;">'
			+'<FORM id="loginForm" METHOD=GET ACTION="'+this.loginPost+'">'
			+'<INPUT TYPE="hidden" name="a" value="'+this.loginNum+'">'
			+'<INPUT TYPE="hidden" name="t" value="'+this.loginToken+'">'
			+'<INPUT TYPE="hidden" name="r" value="'+this.receiveUrl+this.goUrl+'">'
            +'<tr>'
            +    '<td colspan="2" class="td00" style="padding-top:35px;">'
			+		'Welcome to GameDP <br />The world leading free browser based game platform'
            +    '</td>'
            +'</tr>'
            +'<tr>'
            +    '<td class="td01">'
            +       '<label for="username">'
            +            'Email:</label>'
            +   '</td>'
            +    '<td>'
            +        '<input type="text" class="input1" id="username" name="username" onkeyup="PassportScore.userNameKeyUp()"/>'
            +    '</td>'
            +'</tr>'
            +'<tr>'
            +    '<td class="td01">'
            +        '<label for="password">'
            +            'Password:</label>'
            +    '</td>'
            +    '<td>'
            +        '<input type="password" class="input1" id="password" name="password" onkeyup="PassportScore.pwdKeyUp()"/>'
            +    '</td>'
            +'</tr>'

		    +'<tr>'
            +    '<td class="td01"><label for="safecode">Verify Code :</label></td>'
            +    '<td align=left>'
            +        '<input type="text" class="input2" id="safecode" name="safecode" title="?????" onkeyup="PassportScore.checkCodeKeyUp()" style="width: 60px; margin:0 2px 0 0"/>'
            +        '<a class=nextChal href="javascript:PassportScore.refreshimg()" ><img id="passportYZM" width="70" src="'+this.checkCodeUrl+'" alt="" onclick="PassportScore.refreshimg();"'
            +         '   style="cursor: pointer; vertical-align: middle" /></a>'
            +    '</td>'
            +'</tr>'           
			+'<tr>'
            +    '<td colspan="2" class="td03">'
            +       '<input value="" class="btn_login" type="button" id="btnSubmit" style="float:left" title="Login Now" />'
			+       '<a href="http://passport.gamedp.com/Account/Register" style="background:url(http://images.gamedp.com/www/images/sign_up_edit.gif) no-repeat 0 -2px;float:left;height:23px;width:72px;" title="Sign Up"></a>'
            +    '</td>'
            +'</tr>'
			
            +'<tr>'
            +    '<td colspan="2" class="td02">'
            +'<a href="'+this.getPwdUrl+'" title="Forget Your Password?">Forgot Password?</a> '
            +    '</td>'
            +'</tr>'
			+'</form>'
			+'</table>';
	return html;
}