var filename="upcomingevents2008-06.shtml"

// ---------------------------
// DO NOT EDIT BELOW THIS LINE
// ---------------------------

// var path="<sub-folder>/"

//String.substr(startPositionIndex[,length])
input_year = filename.substr(14,4)

input_month = filename.substr(19,2)
MonthWords = "null"
if (input_month == 1) MonthWords = "January"
if (input_month == 2) MonthWords = "February"
if (input_month == 3) MonthWords = "March"
if (input_month == 4) MonthWords = "April"
if (input_month == 5) MonthWords = "May"
if (input_month == 6) MonthWords = "June"
if (input_month == 7) MonthWords = "July"
if (input_month == 8) MonthWords = "August"
if (input_month == 9) MonthWords = "September"
if (input_month == 10) MonthWords = "October"
if (input_month == 11) MonthWords = "November"
if (input_month == 12) MonthWords = "December"

input_day = filename.substr(6,2)
if (input_day < 10) {
	input_day = input_day.substr(1,1)
}

// Homepage right hand column
// this week's bulletin is
// <script>
// document.writeln(input_day+' '+MonthWords+' '+input_year)
// </script>

// root directory thisweeksbulletin.htm
// <script>
// document.writeln('<META HTTP-EQUIV="refresh" CONTENT="0;URL='+path+filename+'">')
// </script>
