<!-- Begin

var day_of_week = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
var month_of_year = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
var Calendar = new Date();

var year = Calendar.getYear();
var month = Calendar.getMonth();
var today = Calendar.getDate();
var weekday = Calendar.getDay();

var DAYS_OF_WEEK = 7;
var DAYS_OF_MONTH = 31;
var cal;

Calendar.setDate(1);
Calendar.setMonth(month);

var TR_start = '<TR>';
var TR_end = '</TR>';
var highlight_start = '<TD WIDTH="110" HEIGHT="25"><TABLE CELLSPACING="0" BORDER="0"  BGCOLOR="#D7FFFF"><TR><TD WIDTH="110" HEIGHT="25"><CENTER>';
var highlight_end   = '</CENTER></TD></TR></TABLE>';
var TD_start = '<TD WIDTH="110" HEIGHT="25"><CENTER>';
var TD_end = '</CENTER></TD>';

cal =  '<TABLE BORDER=0 CELLSPACING=4 CELLPADDING=0 BGCOLOR=#FFFFFF><TR><TD>';
cal += '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 BGCOLOR=#FCFCFC>' + TR_start;
cal += '<TD HEIGHT="25" COLSPAN="' + DAYS_OF_WEEK + '" BGCOLOR="#FFFFFF" ALIGN=CENTER CLASS=STYLE2>';
cal += month_of_year[month]  + '  ' + year + '</CENTER>' + TD_end + TR_end;
cal += TR_start;


for(index=0; index < DAYS_OF_WEEK; index++)
{

if(weekday == index)
cal += TD_start + '<B>' + day_of_week[index] + '</B>' + TD_end;

else
cal += TD_start + day_of_week[index] + TD_end;
}

cal += TD_end + TR_end;
cal += TR_start;

for(index=0; index < Calendar.getDay(); index++)
cal += TD_start + '  ' + TD_end;

for(index=0; index < DAYS_OF_MONTH; index++)
{
if( Calendar.getDate() > index )
{
week_day =Calendar.getDay();

if(week_day == 0)
cal += TR_start;

if(week_day != DAYS_OF_WEEK)
{

var day  = Calendar.getDate();

if( today==Calendar.getDate() )
cal += highlight_start + day + highlight_end + TD_end;
else
cal += TD_start + day + TD_end;
}

if(week_day == DAYS_OF_WEEK)
cal += TR_end;
}

Calendar.setDate(Calendar.getDate()+1);

}

cal += '</TD></TR></TABLE></TD></TR></TABLE>';

document.write(cal);

//  End -->