function Disp_event(){
	
	now=new Date();
	myWeekTbl = new Array( "日","月","火","水","木","金","土" );
	var title_str,utitle_str,end_day,day_str,line_num;
	line_num=0;
	line_color= new Array( "#ffffff","#EEEEEE");
	for(i=0;i<=num;i++){	
		day_str="";title_str="";utitle_str="";
		end_day= new Date(eval(ey[i]),eval(em[i])-1,eval(ed[i]));
		
		if(now.getTime() - end_day.getTime() >24*60*60*1000 ){continue;}
		start_day= new Date(eval(sy[i]),eval(sm[i])-1,eval(sd[i]));
		s_youbi=start_day.getDay();
		e_youbi=end_day.getDay();
		day_str=sy[i].substring(2, 4)+'/'+sm[i]+'/'+sd[i]+'('+myWeekTbl[s_youbi]+')';;
		if(sy[i]==ey[i] && sm[i]==em[i] &&sd[i]==ed[i]){;}
		else{
			day_str+='<br>　〜'+ey[i].substring(2, 4)+'/'+em[i]+'/'+ed[i]+'('+myWeekTbl[e_youbi]+')';
		}
		title_str='<a href="cgi/event/'+link[i]+'">「'+title[i]+'」<\/a>';
		utitle_str='<a href="cgi/event/'+link[i]+'">'+utitle[i]+'<\/a>';
		document.write('<tr bgcolor='+line_color[line_num]+'>');
	   	document.write('<td width="110"><font size="-1" color="#666666"><strong>　■');
	   	document.write(day_str);
	   	document.write('</strong></font></td>');
	
	   	document.write('<td width="350"><font size="-1">');
	   	document.write(utitle_str);
	   	document.write('<br>');
	   	document.write(title_str);
	   	document.write('<\/font><\/td><\/tr>');
		document.write('<tr>');
		document.write('<td background="img/line_p.gif" colspan=2><img src="img/sp.gif" alt="□" width="1" height="3" /><\/td>');
		document.write('<\/tr>');
		line_num++;
		line_num=line_num%2;
		
	}
}

