<!--

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

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


this.m_rgMths = new Array( "http://www.gbpac.com/season/calendar/january.shtml", "http://www.gbpac.com/season/calendar/february.shtml", "http://www.gbpac.com/season/calendar/march.shtml", "http://www.gbpac.com/season/calendar/april.shtml", 
 "http://www.gbpac.com/season/calendar/may.shtml", "http://www.gbpac.com/season/calendar/june.shtml", "http://www.gbpac.com/season/calendar/july.shtml", "http://www.gbpac.com/season/calendar/august.shtml", "http://www.gbpac.com/season/calendar/september.shtml", "http://www.gbpac.com/season/calendar/october.shtml", "http://www.gbpac.com/season/calendar/november.shtml", "http://www.gbpac.com/season/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.text = t;
  
  this.display = ampCalendar_Display;

}

//-->


