function opensubwin(attrstr,targ1)
{
	var tempwin=window.open(targ1,null,attrstr);
	tempwin.location.href=targ1;
	//tempwin.opener=this;
}

function opensubwin2(theForm,theName,theid,theseq)
{
	var theWindow;
	var theAccount;
	theWindow = window.open("../select.asp?theForm="+theForm+"&theName="+theName+"&theid="+theid+"&theseq="+theseq,"Select","toolbar=no,scrollbars=yes,location=no,status=no,menubar=no,width=520,height=320,top=150,left=160");
	theWindow.opener = this;
}

function opensubwin3(openurl,title,windowform)
{
	var theWindow;
	var theAccount;
	theWindow = window.open(openurl,title,windowform);
	theWindow.opener = this;
}

function CheckDate(input){
	var d1 = "";
	d1 = input;
	d1 = d1.split("-");
	//alert('d1[0] is '+d1[0]+' d1[1] is '+d1[1]+'d1[2] is '+d1[2]);
	if ((d1[0] > 2099)||(d1[0]=="")) return 1;//PeiJun_YanÓÚ2004-5-18¼Ó
		
	if ((input=="TODAY")||(input=="YESTERDAY")||(input=="TOMORROW")||(input=="LAST WEEK")||(input=="THIS WEEK")||(input=="NEXT WEEK")||(input=="LAST MONTH")||(input=="THIS MONTH")||(input=="NEXT MONTH")) return 0;
	if ((d1[1]>0) && (d1[1]<13) && (d1[2]<32) && (d1[2]>0)) {
		 if (
				!(d1[1]==2 && d1[2]==31) && 
				!(d1[1]==2 && d1[2]==30) &&
				!(d1[1]==4 && d1[2]==31) && 
				!(d1[1]==6 && d1[2]==31) && 
				!(d1[1]==9 && d1[2]==31) && 
				!(d1[1]==11 && d1[2]==31)&&
				!(
					!(
						(d1[0] %4==0 && !(d1[0] %100==0)) || 
						(d1[0] % 400 ==0)
					) && 
					d1[1]==2 && 
					d1[2]==29
				)
			) {
				return (0);
			}
		else {
			return (1);
		}
	}
	else {
		return (1);
	}
}
