<div class="htmlarea"><textarea id="runcode44906"> <title> Basic Calendar </title> <meta http-equiv="content-type" content="text/html; charset=gb2312"> <style type="text/css"> .main { width:200px; border:0px solid black; text-align:center; } .month { background-color:black; font:bold 12px verdana; color:white; } .daysofweek { background-color:gray; font:bold 12px verdana; color:white; } .days { font-size: 12px; font-family:verdana; color:black; background-color: lightyellow; padding: 2px; } .days #today{ font-weight: bold; color: red; } </style> <script type="text/javascript"> function buildCal(m, y, cM, cH, cDW, cD, brdr){ var mn=['January','February','March','April','May','June','July','August','September','October','November','December']; var dim=[31,0,31,30,31,30,31,31,30,31,30,31]; var oD = new Date(y, m-1, 1); //DD replaced line to fix date bug when current day is 31st oD.od=oD.getDay()+1; //DD replaced line to fix date bug when current day is 31st var todaydate=new Date() //DD added var scanfortoday=(y==todaydate.getFullYear() && m==todaydate.getMonth()+1)? todaydate.getDate() : 0 //DD added dim[1]=(((oD.getFullYear()%100!=0)&&(oD.getFullYear()%4==0))||(oD.getFullYear()%400==0))?29:28; var t='<div class="'+cM+'"><table class="'+cM+'" cols="7" cellpadding="0" border="'+brdr+'" cellspacing="0"><tr>'; t+='<td colspan="7" class="'+cH+'">'+mn[m-1]+' - '+y+'<tr>'; for(s=0;s<7;s++)t+='<td class="'+cDW+'">'+"SMTWTFS".substr(s,1)+''; t+='<tr>'; for(i=1;i<=42;i++){ var x=((i-oD.od>=0)&&(i-oD.od<dim[m-1]))? i-oD.od+1 : ' '; if (x==scanfortoday) //DD added x='<span id="today">'+x+'' //DD added t+='<td class="'+cD+'">'+x+''; if(((i)%7==0)&&(i<36))t+='<tr>'; } return t+='</script></textarea></div>'; } <script type="text/javascript"> var todaydate=new Date() var curmonth=todaydate.getMonth()+1; //get current month (1-12) var curyear=todaydate.getFullYear(); //get current year document.write(buildCal(curmonth, curyear, "main", "month", "daysofweek", "days", 0)); </script> <br><input onclick="runEx('runcode44906')" type="button" value="杩">