<!--
// 表單驗證函數群
Validator = {
  Require : /.+/,
  Email : /^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/,
  Phone : /^((\(\d{2,3}\))|(\d{3}\-))?(\(0\d{2,3}\)|0\d{2,3}-)?[1-9]\d{6,7}(\-\d{1,4})?$/,
  Mobile : /^((\(\d{2,3}\))|(\d{3}\-))?9\d{9}$/,
  Url : /^http:\/\/[A-Za-z0-9]+\.[A-Za-z0-9]+[\/=\?%\-&_~`@[\]\':+!]*([^<>\"\"])*$/,
  IdCard : "this.IsIdCard(value)",
  Currency : /^\d+(\.\d+)?$/,
  Number : /^\d+$/,
  Zip : /^[1-9]\d{5}$/,
  QQ : /^[1-9]\d{4,8}$/,
  Integer : /^[-\+]?\d+$/,
  Double : /^[-\+]?\d+(\.\d+)?$/,
  English : /^[A-Za-z]+$/,
  Chinese :  /^[\u0391-\uFFE5]+$/,
  Username : /^[a-z]\w{3,}$/i,
  UnSafe : /^(([A-Z]*|[a-z]*|\d*|[-_\~!@#\$%\^&\*\.\(\)\[\]\{\}<>\?\\\/\'\"]*)|.{0,5})$|\s/,
  IsSafe : function(str){return !this.UnSafe.test(str);},
  SafeString : "this.IsSafe(value)",
  Filter : "this.DoFilter(value, getAttribute('accept'))",
  Limit : "this.limit(value.length,getAttribute('min'),  getAttribute('max'))",
  LimitB : "this.limit(this.LenB(value), getAttribute('min'), getAttribute('max'))",
  Date : "this.IsDate(value, getAttribute('min'), getAttribute('format'))",
  Repeat : "value == document.getElementsByName(getAttribute('to'))[0].value",
  Range : "getAttribute('min') < (value|0) && (value|0) < getAttribute('max')",
  Compare : "this.compare(value,getAttribute('operator'),getAttribute('to'))",
  Custom : "this.Exec(value, getAttribute('regexp'))",
  Group : "this.MustChecked(getAttribute('name'), getAttribute('min'), getAttribute('max'))",
  ErrorItem : [document.forms[0]],
  ErrorMessage : ["以下原因导致提交失败：\t\t\t\t"],
  Validate : function(theForm, mode){
	  var obj = theForm || event.srcElement;
	  var count = obj.elements.length;
	  this.ErrorMessage.length = 1;
	  this.ErrorItem.length = 1;
	  this.ErrorItem[0] = obj;
	  for(var i=0;i<count;i++){
		  with(obj.elements[i]){
			  var _dataType = getAttribute("dataType");
			  if(typeof(_dataType) == "object" || typeof(this[_dataType]) == "undefined")  continue;
			  this.ClearState(obj.elements[i]);
			  if(getAttribute("require") == "false" && value == "") continue;
			  switch(_dataType){
				  case "IdCard" :
				  case "Date" :
				  case "Repeat" :
				  case "Range" :
				  case "Compare" :
				  case "Custom" :
				  case "Group" : 
				  case "Limit" :
				  case "LimitB" :
				  case "SafeString" :
				  case "Filter" :
					  if(!eval(this[_dataType]))	{
						  this.AddError(i, getAttribute("msg"));
					  }
					  break;
				  default :
					  if(!this[_dataType].test(value)){
						  this.AddError(i, getAttribute("msg"));
					  }
					  break;
			  }
		  }
	  }
	  if(this.ErrorMessage.length > 1){
		  mode = mode || 1;
		  var errCount = this.ErrorItem.length;
		  switch(mode){
		  case 2 :
			  document.getElementById("subme").style.display="block";
			  for(var i=1;i<errCount;i++)
			  {
				  this.ErrorItem[i].style.color = "red";
				  this.ErrorItem[i].style.border = "1pt solid #FF0000";
				  this.ErrorItem[i].style.background = "#FFE5E5";
			  }
		  case 1 :
			  document.getElementById("subme").style.display="block";
			  alert(this.ErrorMessage.join("\n"));
			  this.ErrorItem[1].focus();
			  break;
		  case 3 :
			  document.getElementById("subme").style.display="block";
			  for(var i=1;i<errCount;i++){
			  try{
				  var span = document.createElement("SPAN");
				  span.id = "__ErrorMessagePanel";
				  span.style.color = "red";
				  this.ErrorItem[i].parentNode.appendChild(span);
				  span.innerHTML = this.ErrorMessage[i].replace(/\d+:/,"＊");
				  }
				  catch(e){alert(e.description);}
			  }
			  this.ErrorItem[1].focus();
			  break;
		  default :
			  document.getElementById("subme").style.display="block";
			  alert(this.ErrorMessage.join("\n"));
			  break;
		  }
		  return false;
	  }
	  return true;
  },
  limit : function(len,min, max){
	  min = min || 0;
	  max = max || Number.MAX_VALUE;
	  return min <= len && len <= max;
  },
  LenB : function(str){
	  return str.replace(/[^\x00-\xff]/g,"**").length;
  },
  ClearState : function(elem){
	  with(elem){
		  if(style.color == "red")
		  {
			  style.color = "";
			  style.border = "1pt solid #808080";
			  style.background = "#fafafa";
		  }
		  var lastNode = parentNode.childNodes[parentNode.childNodes.length-1];
		  if(lastNode.id == "__ErrorMessagePanel")
			  parentNode.removeChild(lastNode);
	  }
  },
  AddError : function(index, str){
	  this.ErrorItem[this.ErrorItem.length] = this.ErrorItem[0].elements[index];
	  this.ErrorMessage[this.ErrorMessage.length] = this.ErrorMessage.length + "：" + str;
  },
  Exec : function(op, reg){
	  return new RegExp(reg,"g").test(op);
  },
  compare : function(op1,operator,op2){
	  switch (operator) {
		  case "NotEqual":
			  return (op1 != op2);
		  case "GreaterThan":
			  return (op1 > op2);
		  case "GreaterThanEqual":
			  return (op1 >= op2);
		  case "LessThan":
			  return (op1 < op2);
		  case "LessThanEqual":
			  return (op1 <= op2);
		  default:
			  return (op1 == op2);
	  }
  },
  MustChecked : function(name, min, max){
	  var groups = document.getElementsByName(name);
	  var hasChecked = 0;
	  min = min || 1;
	  max = max || groups.length;
	  for(var i=groups.length-1;i>=0;i--)
		  if(groups[i].checked) hasChecked++;
	  return min <= hasChecked && hasChecked <= max;
  },
  DoFilter : function(input, filter){
return new RegExp("^.+\.(?=EXT)(EXT)$".replace(/EXT/g, filter.split(/\s*,\s*/).join("|")), "gi").test(input);
  },
  IsIdCard : function(number){
  var acc = 0;
  d0 = number.charAt(0);
  d1 = number.charAt(1);
  d2 = number.charAt(2);
  d3 = number.charAt(3);
  d4 = number.charAt(4);
  d5 = number.charAt(5);
  d6 = number.charAt(6);
  d7 = number.charAt(7);
  d8 = number.charAt(8);
  d9 = number.charAt(9);
  if ((d0 == "A") || (d0 == "a")) { acc = 10; }
  else if ((d0 == "B") || (d0 == "b")) { acc = 11; }
  else if ((d0 == "C") || (d0 == "c")) { acc = 12; }
  else if ((d0 == "D") || (d0 == "d")) { acc = 13; }
  else if ((d0 == "E") || (d0 == "e")) { acc = 14; }
  else if ((d0 == "F") || (d0 == "f")) { acc = 15; }
  else if ((d0 == "G") || (d0 == "g")) { acc = 16; }
  else if ((d0 == "H") || (d0 == "h")) { acc = 17; }
  else if ((d0 == "J") || (d0 == "j")) { acc = 18; }
  else if ((d0 == "K") || (d0 == "k")) { acc = 19; }
  else if ((d0 == "L") || (d0 == "l")) { acc = 20; }
  else if ((d0 == "M") || (d0 == "m")) { acc = 21; }
  else if ((d0 == "N") || (d0 == "n")) { acc = 22; }
  else if ((d0 == "P") || (d0 == "p")) { acc = 23; }
  else if ((d0 == "Q") || (d0 == "q")) { acc = 24; }
  else if ((d0 == "R") || (d0 == "r")) { acc = 25; }
  else if ((d0 == "S") || (d0 == "s")) { acc = 26; }
  else if ((d0 == "T") || (d0 == "t")) { acc = 27; }
  else if ((d0 == "U") || (d0 == "u")) { acc = 28; }
  else if ((d0 == "V") || (d0 == "v")) { acc = 29; }
  else if ((d0 == "W") || (d0 == "w")) { acc = 30; }
  else if ((d0 == "X") || (d0 == "x")) { acc = 31; }
  else if ((d0 == "Y") || (d0 == "y")) { acc = 32; }
  else if ((d0 == "Z") || (d0 == "z")) { acc = 33; }
  else if ((d0 == "I") || (d0 == "i")) { acc = 34; }
  else if ((d0 == "O") || (d0 == "o")) { acc = 35; }
  
  if (acc == 0)
  {
	  // alert("請輸入『身份證號碼』的第一個英文字母！");
	  return false;
  }
  else
  {
	  accstr = new String(acc);
	  acc_1 = (accstr).charAt(0);
	  acc_2 = (accstr).charAt(1);
	  certsum = 1*acc_1 + 9*acc_2 + 8*d1 + 7*d2 + 6*d3 + 5*d4 + 4*d5 + 3*d6 + 2*d7 + 1*d8;
	  certsum_2 = parseInt(certsum%10);
	  certsum_3 = 10 - certsum_2;
	  
	  if (d9 != certsum_3)
	  {
	  	  // alert("請檢查『身份證號碼』是否輸入錯誤！");
	  	  return false;
	  }
	  else
	  {
	  	  return true;
	  }
  }
},
  IsDate : function(op, formatString){
	  formatString = formatString || "ymd";
	  var m, year, month, day;
	  switch(formatString){
		  case "ymd" :
			  m = op.match(new RegExp("^((\\d{4})|(\\d{2}))([-./])(\\d{1,2})\\4(\\d{1,2})$"));
			  if(m == null ) return false;
			  day = m[6];
			  month = m[5]*1;
			  year =  (m[2].length == 4) ? m[2] : GetFullYear(parseInt(m[3], 10));
			  break;
		  case "dmy" :
			  m = op.match(new RegExp("^(\\d{1,2})([-./])(\\d{1,2})\\2((\\d{4})|(\\d{2}))$"));
			  if(m == null ) return false;
			  day = m[1];
			  month = m[3]*1;
			  year = (m[5].length == 4) ? m[5] : GetFullYear(parseInt(m[6], 10));
			  break;
		  default :
			  break;
	  }
	  if(!parseInt(month)) return false;
	  month = month==0 ?12:month;
	  var date = new Date(year, month-1, day);
	  return (typeof(date) == "object" && year == date.getFullYear() && month == (date.getMonth()+1) && day == date.getDate());
	  function GetFullYear(y){return ((y<30 ? "20" : "19") + y)|0;}
  }
}
-->

