<!--

function ampCalendar_Display()
{
    document.writeln("<a href=\"" + this.title + "\">Calendar</a>");
}

function ampCalendar( m, y )
{
	this.m_rgDay = new Array();
	
	this.m_rgTxt = new Array();
	
	this.m_rgLnk = new Array();


this.m_rgMths = new Array( "calendar/january.shtml", "calendar/february.shtml", "calendar/march.shtml", "calendar/april.shtml",
 "calendar/may.shtml", "calendar/june.shtml", "calendar/july.shtml", "calendar/august.shtml", "calendar/september.shtml", "calendar/october.shtml", "calendar/november.shtml", "calendar/december.shtml" );
  this.month = m;
  this.m_now = new Date(); 
  this.year  = (y < 1900? y+1900: y);
  this.m_myDate  = new Date(this.year, m - 1, 1);
  this.monthName = this.m_rgMths[ this.m_myDate.getMonth() ];
  this.title = this.monthName;
  
  this.display = ampCalendar_Display;

}

//-->


