PassportLogin.showLoginForm = function ()
{
	html ='<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+'">'
		+'<table width="352" border="0" class="log_tab" style="font-size:12px;">'
        +'<tr><td height="35px" align="center" colspan="2" style="font-size:12px; color:#fff;"><input type="radio" value="gamedp" id="login_Radio1" name="AT" checked="checked">'
        +'          <label class="" for="rfdp">GameDP</label>'
        +'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="radio" value="bbgsite" id="login_Radio2" name="AT">'
        +'        <label class="" for="rfbbg">BBG/MMOSite</label>'
        +'    </td></tr>'
        +'        <tr><th height="35px" align="right" width="125">Email/UID:&nbsp;&nbsp;</th>'
        +'          <td> <input type="text" class="inpt" id="login_username" name="username" title="account" onkeyup="PassportLogin.userNameKeyUp()" style="width:170px;" />'
        +'        <div class="error_tips" id="username_tips"></div></td></tr>'

        +'          <tr><th height="35px" align="right">Password:&nbsp;&nbsp;</th>'
        +'          <td><input type="password" class="inpt" id="login_password" name="password" title="password" onkeyup="PassportLogin.pwdKeyUp()" style="width:170px;"/>'
        +'        <div class="error_tips" id="password_tips"></div></td></tr>'
        +'          <tr><th height="35px" align="right">Verify code:&nbsp;&nbsp;</th>'
        +'          <td><input type="text" class="inpt" id="login_safecode" name="safecode" title="" onkeyup="PassportLogin.checkCodeKeyUp()" style="width:100px;"/>'
        +'          &nbsp;<img id="login_passportYZM" src="'+this.checkCodeUrl+'" alt="Confirmation Code" onclick="PassportLogin.refreshimg();"'
        +'                                    style="cursor: pointer; vertical-align: middle; height:22px;" />'
        +'        <div class="error_tips" id="safecode_tips"></div></td></tr>'
        +'        <tr><td height="52px" align="center" colspan="2">'
        +'          <input type="submit" id="btnSubmit"  class="index_btn sign_in_inpt" value="" style="cursor:pointer;"/></td></tr>'
	   +  '<tr>'
       +    '<td colspan="2" align="center" class="txt_blue"><br />'
       +    'Or login with any of your accounts on:<br />'
       +    '<ul class="share_list clearfix">'
       +    '<li><a href="http://passport.gamedp.com/PlatFormLogin.axd?ptflag=twitter" class="share_ico n1" title="twiter">&nbsp;</a></li>'
       +    '<li><a href="http://passport.gamedp.com/PlatFormLogin.axd?ptflag=myspace" class="share_ico n2" title="twiter">&nbsp;</a></li>'
       +    '<li><a href="http://passport.gamedp.com/PlatFormLogin.axd?ptflag=facebook" class="share_ico n3" title="twiter">&nbsp;</a></li>'
       +    '<li><a href="http://passport.gamedp.com/PlatFormLogin.axd?ptflag=yahoo" class="share_ico n5" title="twiter">&nbsp;</a></li>'
       +   '<li><a href="http://passport.gamedp.com/PlatFormLogin.axd?ptflag=google" class="share_ico n6" title="twiter">&nbsp;</a></li>'
       +    '</ul>'	
   	   +  '</td>'
       +  '</tr>'
       +'        </table>'
	   +'</form>';
	return html;
}
