// Define a function that will load the proper URL for non-frame content based on the current date 

	function calendar_nf(path) { 

		var MonthNames = new Array(12)
			MonthNames[1] = "jan"
			MonthNames[2] = "feb"
			MonthNames[3] = "mar"
			MonthNames[4] = "apr"
			MonthNames[5] = "may"
			MonthNames[6] = "jun"
			MonthNames[7] = "jul"
			MonthNames[8] = "aug"
			MonthNames[9] = "sep"
			MonthNames[10] = "oct"
			MonthNames[11] = "nov"
			MonthNames[12] = "dec"

		CurrentDate=new Date()
		CurrentYear=CurrentDate.getYear().toString()
		var MonthFile=path + "/" + MonthNames[CurrentDate.getMonth()+1] + CurrentYear.substring(CurrentYear.length-2) + ".html";

	return MonthFile
} 