﻿
function windowJump() {
			window.open("tetra/reg_pop.asp","","left=12,top=320,width=300,height=200,resizable=no");
		}
		
		function verifyForm()
		{
			if (document.getElementById("inputTextLoginName").getAttribute("value") == "")
			{
				alert("请填写用户名……");
				return false;
			}
			
			if (document.getElementById("inputTextPassword").getAttribute("value") == "")
			{
				alert("请填写密码……");
				return false;
			}
			
			//document.getElementById("inputHiddenIsLogin").setAttribute("value", "True");
			
		
			return true;
		}
