PassportScore.showRegForm = function ()
{
	html='<form action="'+this.regUrl+'" method="post" id="regForm"><ul>'
			+'<input id="a" name="a" type="hidden" value="'+this.loginNum+'" />'
			+'<input id="t" name="t" type="hidden" value="'+this.loginToken+'" />'
			+'<input id="r" name="r" type="hidden" value="'+this.receiveUrl+this.goUrl+'" />'
			+'<table width="100%" border="0" class="log_tab">'
            +  '<tr>'
            +    '<th scope="row" align="right" height="35px" >Email: &nbsp;</th>'
            +    '<td><input name="username" id="username" type="text" class="inpt" style="width:170px;" /><span id="usernametips"></span></td>'
            +  '</tr>'
			+  '<tr>'			
            +  '<tr>'
            +    '<th align="right" scope="row" height="35px">Password: &nbsp;</th>'
            +    '<td><input name="password" id="password" type="password" class="inpt" style="width:170px;" /><span id="passwordtips"></span></td>'
            +  '</tr>'
            +  '<tr>'
            +    '<th align="right" scope="row" height="35px">Confirm Password: &nbsp;</th>'
            +    '<td><input name="confirmPassword" id="confirmPassword" type="password" class="inpt" style="width:170px;" /><span id="confirmPasswordtips"></span></td>'
            +  '</tr>'
            + '<tr>'
            +    '<th align="right" scope="row" height="35px">Vertify code: &nbsp;</th>'
            +     '<td><input name="safecode" id="safecode" type="text" class="inpt" style="width:100px;" /> <img id="captcha_img" src="'+this.checkCodeUrl+'" alt="Confirmation Code" onclick="PassportScore.refreshimg();" style="vertical-align:middle" height="22" /><span id="safecodetips"></span></td>'
            +  '</tr>'
			+  '<tr style="display:none;">'
            +    '<td colspan=2><input checked="checked" id="agree" name="agree" type="checkbox" value="true" /><input name="agree" id="agree" type="hidden" value="false" /><input name="allowReg" id="allowReg" type="hidden" value="false" /> I agree to the <a href="http://www.gamedp.com/about/terms_of_service.shtml" title="User Agreement">User Agreement</a> and <a href="http://www.gamedp.com/about/forum_rule.shtml" title="Forum Rules">Forum Rules</a></td>'
            +  '</tr>'
			+    '<tr>'
            +    '<td height="32px" colspan="2" align="center" ><input name="" id="btnReg" value="" type="submit" class="index_btn  sign_up_inpt"  style="cursor:pointer;"/></td>'
            + '</tr>'
            +  '<tr>'
            +    '<td colspan="2" height="72" align="center" class="txt_blue">'
            +    '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="myspace">&nbsp;</a></li>'
            +    '<li><a href="http://passport.gamedp.com/PlatFormLogin.axd?ptflag=facebook" class="share_ico n3" title="facebook">&nbsp;</a></li>'
            +    '<li><a href="http://passport.gamedp.com/PlatFormLogin.axd?ptflag=yahoo" class="share_ico n5" title="yahoo">&nbsp;</a></li>'
            +   '<li><a href="http://passport.gamedp.com/PlatFormLogin.axd?ptflag=google" class="share_ico n6" title="google">&nbsp;</a></li>'
            +    '</ul>'	
   			+  '</td>'
            +  '</tr>'
            +  '<tr>'
            +    '<td colspan="2" align="center" class="txt_blue">'
            +    '<p align="left" style="width:300px;">Note: Possible account termination when using illegal leveling or illegally obtained gold.</p>'	
   			+  '</td>'
            +  '</tr>'
            +'</table>'
			+'</form>';
	return html;
}

