	//<!--
		
			
		
		function ShowCalendar() {
			var theCalendar = "";
			
			var months = new Array(13);
  			months[1] = "January";
  			months[2] = "February";
  			months[3] = "March";
  			months[4] = "April";
  			months[5] = "May";
  			months[6] = "June";
  			months[7] = "July";
  			months[8] = "August";
  			months[9] = "September";
  			months[10] = "October";
  			months[11] = "November";
  			months[12] = "December";
			
			var color_day_back = "#EEEEEE";
			var color_day_text = "#000000";
			var color_head_back = "#D0D0D0";
			var color_head_text = "#000000";
			var color_head_textsun = "#FF0000";
			var color_sel_back = "#000000";
			var color_sel_text = "#00FF00";
			
			var x;
			var dateObj;
			
			var nmonth;
  			var ndate;
  			var nyear;
			
			
			dateObj = new Date();
			nmonth = months[dateObj.getMonth() + 1];
  			ndate = dateObj.getDate();
  			nyear = dateObj.getYear();
			
			if(nyear >= 2000)
    			;
  			else if(nyear < 10)
    			nyear = "200" + nyear;
  			else if ((nyear >= 10) && (nyear < 50))
    			nyear = "20" + nyear;
  			else if ((nyear > 100) && (nyear < 110))
    			nyear = "200" + (nyear - 100);
  			else if (nyear >= 110)
    			nyear = "20" + (nyear - 100);
  			else if (nyear = 100)
    			nyear = "2000";
  			else
    			nyear = "19" + nyear;
			
			theCalendar += "<CENTER><FONT CLASS='SmallBodyText'><B>" + nmonth + " " + nyear + "</B></FONT></CENTER>";
			
			theCalendar += "<TABLE BORDER='0' CELLSPACING='1' CELLPADDING='0' ALIGN='center'>";
			//row with day names
			theCalendar += "<TR ALIGN=RIGHT>";
			theCalendar += "<TD WIDTH=10 BGCOLOR='"+color_head_back+"'><FONT FACE='\"Arial Narrow\",\"Arial MT Condensed Light\",sans-serif' SIZE='1' COLOR='"+color_head_text+"'><B>Mo</B></FONT></TD>";
			theCalendar += "<TD WIDTH=10 BGCOLOR='"+color_head_back+"'><FONT FACE='\"Arial Narrow\",\"Arial MT Condensed Light\",sans-serif' SIZE='1' COLOR='"+color_head_text+"'><B>Tu</B></FONT></TD>";
			theCalendar += "<TD WIDTH=10 BGCOLOR='"+color_head_back+"'><FONT FACE='\"Arial Narrow\",\"Arial MT Condensed Light\",sans-serif' SIZE='1' COLOR='"+color_head_text+"'><B>We</B></FONT></TD>";
			theCalendar += "<TD WIDTH=10 BGCOLOR='"+color_head_back+"'><FONT FACE='\"Arial Narrow\",\"Arial MT Condensed Light\",sans-serif' SIZE='1' COLOR='"+color_head_text+"'><B>Th</B></FONT></TD>";
			theCalendar += "<TD WIDTH=10 BGCOLOR='"+color_head_back+"'><FONT FACE='\"Arial Narrow\",\"Arial MT Condensed Light\",sans-serif' SIZE='1' COLOR='"+color_head_text+"'><B>Fr</B></FONT></TD>";
			theCalendar += "<TD WIDTH=10 BGCOLOR='"+color_head_back+"'><FONT FACE='\"Arial Narrow\",\"Arial MT Condensed Light\",sans-serif' SIZE='1' COLOR='"+color_head_text+"'><B>Sa</B></FONT></TD>";
			theCalendar += "<TD WIDTH=10 BGCOLOR='"+color_head_back+"'><FONT FACE='\"Arial Narrow\",\"Arial MT Condensed Light\",sans-serif' SIZE='1' COLOR='"+color_head_textsun+"'><B>Su</B></FONT></TD>";
			theCalendar += "</TR>";
			
			theCalendar += "<TR ALIGN=RIGHT>";
			
			//empty cells to skip
			dateObj.setDate(1);
			var test;
			if(dateObj.getDay() == 0) test = 7;
			else test = dateObj.getDay();
			for(x = 1; x < test; x++) {
				theCalendar += "<TD><FONT FACE='\"Arial Narrow\",\"Arial MT Condensed Light\",sans-serif' SIZE=1>&nbsp;</FONT></TD>";
			}
			
			//position days in the month table
			for(x = 1; x<=31; ) {
				dateObj.setDate(x);
				if(dateObj.getDate() != x) break;
								
				if(ndate == x) {
					if(dateObj.getDay() == 0) {
						theCalendar += "<TD BGCOLOR='"+color_sel_back+"'><FONT FACE='\"Arial Narrow\",\"Arial MT Condensed Light\",sans-serif' SIZE='1' COLOR='"+color_sel_text+"'><B>" + x + "&nbsp;</B></FONT></TD>";
					} else {
						theCalendar += "<TD BGCOLOR='"+color_sel_back+"'><FONT FACE='\"Arial Narrow\",\"Arial MT Condensed Light\",sans-serif' SIZE='1' COLOR='"+color_sel_text+"'><B>" + x + "&nbsp;</B></FONT></TD>";
					}
				} else {
					if(dateObj.getDay() == 0) {
						theCalendar += "<TD BGCOLOR='"+color_day_back+"'><FONT FACE='\"Arial Narrow\",\"Arial MT Condensed Light\",sans-serif' SIZE='1' COLOR='"+color_head_textsun+"'><B>" + x + "&nbsp;</B></FONT></TD>";
				    } else {
						theCalendar += "<TD BGCOLOR='"+color_day_back+"'><FONT FACE='\"Arial Narrow\",\"Arial MT Condensed Light\",sans-serif' SIZE='1' COLOR='#000000'><B>" + x + "&nbsp;</B></FONT></TD>";
					}
				}
				

				if(dateObj.getDay() % 7 == 0) {
					theCalendar += "</TR>";
					theCalendar += "<TR ALIGN=RIGHT>";
				}
				
				if(x == 31) break;
				x++;
			}
			theCalendar += "</TR>";
			theCalendar += "</TABLE>";
			
			
			document.write( theCalendar );
		}
	//-->