﻿function SetObjValue(_Key,_Val)
{
    document.getElementById(_Key).value = _Val;
}
function GetObjValue(_Key)
{
    return document.getElementById(_Key).value;
}
function ShowMessage(_Message)
{
    alert(_Message);
}
function OpenNewFormResizable(_Url,_Width,_Height)
{
    window.open(_Url,"","titlebar=no,toolbar=no, location=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=yes,left=200,top=200,width=" + _Width + ",height=" + _Height);
}
function OpenNewFormNotResizable(_Url,_Width,_Height)
{
    window.open(_Url,"","titlebar=no,toolbar=no, location=no,directories=no,status=no, menubar=no,scrollbars=yes,resizable=no,left=200,top=200,width=" + _Width + ",height=" + _Height);
}
Date.prototype.format = function(format)
{
    var o =
    {
        "M+" : this.getMonth()+1, //month
        "d+" : this.getDate(),    //day
        "h+" : this.getHours(),   //hour
        "m+" : this.getMinutes(), //minute
        "s+" : this.getSeconds(), //second
        "q+" : Math.floor((this.getMonth()+3)/3),  //quarter
        "S" : this.getMilliseconds() //millisecond
    }
    if(/(y+)/.test(format))
    format=format.replace(RegExp.$1,(this.getFullYear()+"").substr(4 - RegExp.$1.length));
    for(var k in o)
    if(new RegExp("("+ k +")").test(format))
    format = format.replace(RegExp.$1,RegExp.$1.length==1 ? o[k] : ("00"+ o[k]).substr((""+ o[k]).length));
    return format;
}
//判断身份证号，不包含2000年以后的号码
function checkIdcard(idcard){
    return checkIdcardContainTwoThousand(idcard,false);
}
//判断身份证号,第二参代表是否包含2000年以后的号码判断
function checkIdcardContainTwoThousand(idcard,isContain){
var Errors=new Array(
"正确的身份证号码",
"身份证号码位数不对!",
"身份证号码出生日期超出范围或含有非法字符!",
"身份证号码校验错误!",
"身份证地区非法!"
);
var area={11:"北京",12:"天津",13:"河北",14:"山西",15:"内蒙古",21:"辽宁",22:"吉林",23:"黑龙江",31:"上海",32:"江苏",33:"浙江",34:"安徽",35:"福建",36:"江西",37:"山东",41:"河南",42:"湖北",43:"湖南",44:"广东",45:"广西",46:"海南",50:"重庆",51:"四川",52:"贵州",53:"云南",54:"西藏",61:"陕西",62:"甘肃",63:"青海",64:"宁夏",65:"新疆",71:"台湾",81:"香港",82:"澳门",91:"国外"}

var idcard,Y,JYM;
var S,M;
var idcard_array = new Array();
idcard_array = idcard.split("");
//地区检验
if(area[parseInt(idcard.substr(0,2))]==null) return false;//Errors[4];
//身份号码位数及格式检验
switch(idcard.length){
case 15:
if ( (parseInt(idcard.substr(6,2))+1900) % 4 == 0 || ((parseInt(idcard.substr(6,2))+1900) % 100 == 0 && (parseInt(idcard.substr(6,2))+1900) % 4 == 0 )){
ereg=/^[1-9][0-9]{5}[0-9]{2}((01|03|05|07|08|10|12)(0[1-9]|[1-2][0-9]|3[0-1])|(04|06|09|11)(0[1-9]|[1-2][0-9]|30)|02(0[1-9]|[1-2][0-9]))[0-9]{3}$/;//测试出生日期的合法性
} else {
ereg=/^[1-9][0-9]{5}[0-9]{2}((01|03|05|07|08|10|12)(0[1-9]|[1-2][0-9]|3[0-1])|(04|06|09|11)(0[1-9]|[1-2][0-9]|30)|02(0[1-9]|1[0-9]|2[0-8]))[0-9]{3}$/;//测试出生日期的合法性
}
if(ereg.test(idcard))
{
 return true;//Errors[0];
}
else 
{
return false;//Errors[2];
}
break;
case 18:
//18位身份号码检测
//出生日期的合法性检查
//闰年月日:((01|03|05|07|08|10|12)(0[1-9]|[1-2][0-9]|3[0-1])|(04|06|09|11)(0[1-9]|[1-2][0-9]|30)|02(0[1-9]|[1-2][0-9]))
//平年月日:((01|03|05|07|08|10|12)(0[1-9]|[1-2][0-9]|3[0-1])|(04|06|09|11)(0[1-9]|[1-2][0-9]|30)|02(0[1-9]|1[0-9]|2[0-8]))
if ( parseInt(idcard.substr(6,4)) % 4 == 0 || (parseInt(idcard.substr(6,4)) % 100 == 0 && parseInt(idcard.substr(6,4))%4 == 0 )){
//是否包含判断2000年以后的号码
    if(isContain == true)
        ereg=/^[1-9][0-9]{5}(19|20)[0-9]{2}((01|03|05|07|08|10|12)(0[1-9]|[1-2][0-9]|3[0-1])|(04|06|09|11)(0[1-9]|[1-2][0-9]|30)|02(0[1-9]|[1-2][0-9]))[0-9]{3}[0-9Xx]$/;//闰年出生日期的合法性正则表达式
    else
        ereg=/^[1-9][0-9]{5}19[0-9]{2}((01|03|05|07|08|10|12)(0[1-9]|[1-2][0-9]|3[0-1])|(04|06|09|11)(0[1-9]|[1-2][0-9]|30)|02(0[1-9]|[1-2][0-9]))[0-9]{3}[0-9Xx]$/;//闰年出生日期的合法性正则表达式
} else {
    if(isContain == true)
        ereg=/^[1-9][0-9]{5}(19|20)[0-9]{2}((01|03|05|07|08|10|12)(0[1-9]|[1-2][0-9]|3[0-1])|(04|06|09|11)(0[1-9]|[1-2][0-9]|30)|02(0[1-9]|1[0-9]|2[0-8]))[0-9]{3}[0-9Xx]$/;//平年出生日期的合法性正则表达式
    else
        ereg=/^[1-9][0-9]{5}19[0-9]{2}((01|03|05|07|08|10|12)(0[1-9]|[1-2][0-9]|3[0-1])|(04|06|09|11)(0[1-9]|[1-2][0-9]|30)|02(0[1-9]|1[0-9]|2[0-8]))[0-9]{3}[0-9Xx]$/;//平年出生日期的合法性正则表达式
}
if(ereg.test(idcard)){//测试出生日期的合法性
//计算校验位
S = (parseInt(idcard_array[0]) + parseInt(idcard_array[10])) * 7
+ (parseInt(idcard_array[1]) + parseInt(idcard_array[11])) * 9
+ (parseInt(idcard_array[2]) + parseInt(idcard_array[12])) * 10
+ (parseInt(idcard_array[3]) + parseInt(idcard_array[13])) * 5
+ (parseInt(idcard_array[4]) + parseInt(idcard_array[14])) * 8
+ (parseInt(idcard_array[5]) + parseInt(idcard_array[15])) * 4
+ (parseInt(idcard_array[6]) + parseInt(idcard_array[16])) * 2
+ parseInt(idcard_array[7]) * 1
+ parseInt(idcard_array[8]) * 6
+ parseInt(idcard_array[9]) * 3 ;
Y = S % 11;
M = "F";
JYM = "10X98765432";
M = JYM.substr(Y,1);//判断校验位
if(M == idcard_array[17]) return true;//Errors[0]; //检测ID的校验位
else return false;//Errors[3];
}
else return false;//Errors[2];
break;
default:
return false;//Errors[1];
break;
}

}
function  isTelphone(elem){
  if(elem.length<7)
    return false;
   var pattern=/(^[0-9]{3,4}\-[0-9]{3,8}$)|(^[0-9]{3,8}$)|(^\([0-9]{3,4}\)[0-9]{3,8}$)|(^0{0,1}13[0-9]{9}$)|(^0{0,1}15[0-9]{9}$)/;
  if(pattern.test(elem)){
   return true;
  }else{
   //elert("电话号码格式不正确");
   return false;
  }
 }

function isTel(elem){ 
 var boolTel = true; 
  mystr=elem.split(",");   

  for(i=0;i<mystr.length;i++){
    if(!isTelphone(mystr[i])){
    boolTel = false;
    }
  } 
  return boolTel;
}


function isPhone(phone)
{
	if(phone=="")
	{
		return false
	}
	if(!phone)
	{
		return false;
	}
	var strP=/^[0-9\,\-]*?$/;
	if(!strP.test(phone))
	{
		return false;
	}
	return true;
}
function isQQ(qq) 
{
	if(!qq)
	{
		return false;
	}
	var strP=/^[^0]\d{4,9}/;
	if(!strP.test(qq))
	{
		return false;
	}
	return true;
}
function isEmail(email) 
{
	if(!email)
	{
		return false;
	}
	var strP=/^\w+([-+.]\w+)*@\w+([-.]\\w+)*\.\w+([-.]\w+)*$/;
	if(!strP.test(email))
	{
		return false;
	}
	return true;
}
function isMobile(mobile)
{
	if(mobile.length > 11){
		return false;
	}
	else
	{
		var t=/^(13\d{9})|(15\d{9})|(18\d{9})$/;
		return t.test(mobile);
	}
}

// 清除字符串首尾空白字符
String.prototype.trim = function(){
  return this.replace(/^\s+|\s+$Obj/, "");
}
//如果输入不是数字则提示并将其值赋成1
function InputNumberCount(checkID){
   if(!isInputNumber(checkID.value))
    {
	    alert("请输入数字！");
	    checkID.value = "1";
	    return;
    }
}
//验证是否输入的是数字
function isInputNumber(oNum) 
       { 
      if(!oNum) return false; 
      var strP=/^\d+(\.\d+)?$/; 
      if(!strP.test(oNum)) return false; 
      try{ 
      if(parseFloat(oNum)!=oNum) return false; 
      } 
      catch(ex) 
      { 
       return false; 
      } 
      return true; 
       }

var goto_top_type = -1;
var goto_top_itv = 0;
function goto_top_timer()
{
var y = goto_top_type == 1 ? document.documentElement.scrollTop : document.body.scrollTop;
var moveby = 10;
y -= Math.ceil(y * moveby / 40);
if (y < 0) {
y = 0;
}
if (goto_top_type == 1) {
document.documentElement.scrollTop = y;
}
else {
document.body.scrollTop = y;
}
if (y == 0) {
clearInterval(goto_top_itv);
goto_top_itv = 0;
}
}
function goto_top()
{
if (goto_top_itv == 0) {
if (document.documentElement && document.documentElement.scrollTop) {
goto_top_type = 1;
}
else if (document.body && document.body.scrollTop) {
goto_top_type = 2;
}
else {
goto_top_type = 0;
}
if (goto_top_type > 0) {
goto_top_itv = setInterval('goto_top_timer()', 5); 
}
}
}
function GetIsYouYouGuid(TAGuid)
{
    if(TAGuid.toUpperCase() == "b696918a-06da-4cc8-a9ee-769b23e6a587".toUpperCase())
        return true;
    else
        return false;
}
function SetIFrameHeight()
{
    try{
          var control = window.navigator.createFrame(this);
          control.resizeHeight();
       }catch(ex){}
}
