






	var jsReturnURL=document.location.href;

	document.writeln('<link href="http://sso.jrj.com.cn/sso/css/login/defaultStyle.css" rel="stylesheet" type="text/css">'); 

	function loginclick(){
		if (document.getElementById("LoginID").value==""){
			alert("用户名不能为空");
			return false;
		}
		if (document.getElementById("Passwd").value==""){
			alert("密码不能为空");
			return false;
		}
	
		document.getElementById("sso_login_form1").submit();
		return true;
	}
 	document.writeln('<div class="loginMainDIV">');
	document.writeln('<form id="sso_login_form1" name="sso_login_form1" action="http://sso.jrj.com.cn/sso/ssologin" method="post" target="_self">');
	document.writeln('<input type="hidden" name="isVerifyCode" value="false" />');
	document.writeln('<input type="hidden" name="isAddTicket" value="false" />');
	
		document.writeln('<input type="hidden" name="ReturnURL" value="'+jsReturnURL+'"/>');
	
	document.writeln('<ul style="list-style:none;" valign="top">');
   	document.writeln('<li valign="top">用户名：<input id="LoginID" name="LoginID" type="text" size="12" maxlength="20"/>');
  	document.writeln('密码：<input id="Passwd" name="Passwd" type="password" size="12" maxlength="20" onkeydown="javascript:if (event.keyCode==13){loginclick();}"/>');
	document.writeln('<input type="button" value="登 录" onclick="javascript:loginclick();"></li>');
    document.writeln('</ul>');
    document.writeln('</form>');
    document.writeln('</div>');

