// JavaScript Document

var lmonths=new Array()
lmonths[0]=""
lmonths[1]=["June|/university-communications-and-marketing/news/2008-June.asp","July|/university-communications-and-marketing/news/2008-July.asp","August|/university-communications-and-marketing/news/2008-august.asp","September|/university-communications-and-marketing/news/2008-september.asp","October|/university-communications-and-marketing/news/2008-october.asp","November|/university-communications-and-marketing/news/2008-november.asp","December|/university-communications-and-marketing/news/2008-december.asp"]
lmonths[2]=["January|/university-communications-and-marketing/news/2009-january.asp",
"February|/university-communications-and-marketing/news/2009-february.asp","March|/university-communications-and-marketing/news/2009-march.asp",
"April|/university-communications-and-marketing/news/2009-april.asp","May|/university-communications-and-marketing/news/2009-may.asp",
"June|/university-communications-and-marketing/news/2009-june.asp",
"July|/university-communications-and-marketing/news/2009-july.asp",
"August|/university-communications-and-marketing/news/2009-august.asp",
"September|/university-communications-and-marketing/news/2009-september.asp",
"October|/university-communications-and-marketing/news/2009-October.asp",
"November|/university-communications-and-marketing/news/2009-november.asp"
]


function updatemonths(selectedyear)
{
  var yearslist=document.classic.eyears
  var monthslist=document.classic.months
  monthslist.options.length=1
  if (selectedyear>0)
    {
      for (i=0; i<lmonths[selectedyear].length; i++)
      monthslist.options[monthslist.options.length]=new Option(lmonths[selectedyear][i].split("|")[0], lmonths[selectedyear][i].split("|")[1])
    }
}