//功能：弹出特定事件信息窗口//参数一：流水号 参数二：样式号 //返回值：无function newwinEvent(id,toolbar,locations,status,menubar,scrollbars,resizable,width,height,rtop,rleft){var urlname;var attribution;var newWindow;attribution = "toolbar="+toolbar+",location="+locations+",status="+status+",menubar="+menubar+",scrollbars="+scrollbars+",resizable="+resizable+",width="+width+",height="+height+",left="+rleft+",top="+rtop+"";URLname = "event.asp?id="+id+""newWindow=window.open(URLname,'_blank',attribution);}//功能：比较系统日期是否在开始或结束日期中（从1月1日起算，每月按30日）//参数一：开始日期天数 参数二：结束日期天数//返回值：如果当前系统日期在参数范围内返回真function compDate(sCountDay,eCountDay){	var Today = new Date();	var tY = Today.getFullYear();	var tM = Today.getMonth()+1;	var tD = Today.getDate();	tCountDay=tY*10000+tM*30+tD;	if ( tCountDay<=eCountDay && tCountDay>=sCountDay )			return true;	else		return false;}	//20040341		if(compDate(20040341,20040360)&&compMenuId("000001,"))		newwinEvent("1","0","0","0","0","1","0","320","280","10","10" )