<!-- Hide script from old browsers

var URLstr
var MonthList
MonthList = "JanFebMarAprMayJunJulAugSepOctNovDec"
YearList = "2004_2005_2006_2007_2008_2009_2010_2011_2012_2013_2014"
var BuildingIndex
var URLYearIndex
var URLMonthIndex
var URLMonth
var URLYear
var NextMonth
var NextYear
var CurrentMonthIndex
var CurrentYearIndex
var PriorMonth
var PriorYear

URLstr=location.href
BuildingIndex=URLstr.indexOf("BuildingUpdate_")
URLMonthIndex = BuildingIndex+15
URLYearIndex = BuildingIndex+19
//document.write(URLstr)
//document.write(URLMonthIndex)

URLMonth = URLstr.substr(URLMonthIndex,3)
URLYear = URLstr.substr(URLYearIndex,4)

CurrentMonthIndex = MonthList.indexOf(URLMonth)
CurrentYearIndex = YearList.indexOf(URLYear)

function go_back()
{
if(URLMonth == "Jan")
{
PriorMonth = "Dec"
PriorYear = YearList.substr(CurrentYearIndex-5,4)
}
else
{
PriorMonth = MonthList.substr(CurrentMonthIndex-3,3)
PriorYear = URLYear
}
//document.write (URLstr.substr(0,90) + PriorYear + "/BuildingUpdate_" + PriorMonth + "_" + PriorYear + ".htm")
window.location = URLstr.substr(0,90) + PriorYear + "/BuildingUpdate_" + PriorMonth + "_" + PriorYear + ".htm"
}

function go_forward()
{
if (URLMonth == "Dec")
{
Nextmonth = "Jan"
NextYear = YearList.substr(CurrentYearIndex+5,4)
}
else
{
NextMonth= MonthList.substr(CurrentMonthIndex+3,3)
NextYear = URLYear
}

window.location = URLstr.substr(0,90) + NextYear + "/BuildingUpdate_" + NextMonth + "_" + NextYear + ".htm"
}


// End hiding script from old browsers -->
