﻿<!--
function firm()
{
    if(confirm("此操作必须登录后才能完成！\n\n点击“确定”马上免费注册帐号！"))
    {
        location.href="/User_Reg.asp";
    }
}
function OpenMessageWindow (target) { 
  window.open(target, "MsgWin", "resizable=no,width=303,height=145"); 
}
function OpenMsg (target) { 
  window.open(target, "Msg", "resizable=no,width=223,height=450,left=0,top=0"); 
}
function checkLogin()
{
	if(document.userLogin.uid.value=='')
	{
		alert('对不起，请输入用户名。')
		document.userLogin.uid.focus();
		return false;
	}
	if(document.userLogin.pwd.value=='')
	{
		alert('对不起，请输入密码。')
		document.userLogin.uid.focus();
		return false;
	}
	return true;
}
-->