<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function monthPage() {
today = new Date();
m = new Array(
"http://web.mit.edu/8.02t/www/coursedocs/calendar/jan.htm","http://web.mit.edu/8.02t/www/coursedocs/calendar/feb.htm",
"http://web.mit.edu/8.02t/www/coursedocs/calendar/march.htm", "http://web.mit.edu/8.02t/www/coursedocs/calendar/apr.htm",
"http://web.mit.edu/8.02t/www/coursedocs/calendar/may.htm", "http://web.mit.edu/8.02t/www/coursedocs/calendar/jun.htm",
"http://web.mit.edu/8.02t/www/coursedocs/calendar/july.htm", 
"http://web.mit.edu/8.02t/www/coursedocs/calendar/aug.htm",
"http://web.mit.edu/8.02t/www/coursedocs/calendar/sept.htm","http://web.mit.edu/8.02t/www/coursedocs/calendar/oct.htm",
"http://web.mit.edu/8.02t/www/coursedocs/calendar/nov.htm","http://web.mit.edu/8.02t/www/coursedocs/calendar/dec.htm"
);
window.location = m[today.getMonth()];
}
//  End -->