function whichmonth() {
today = new Date();
monthpage = new Array
("jan.shtml","feb.shtml","mar.shtml","apr.shtml","may.shtml","jun.shtml","jul.shtml","aug.shtml","sep.shtml","oct.shtml","nov.shtml","dec.shtml");
window.location = monthpage[today.getMonth()]; 
} 