function months() {
var today = new Date(); 
if((today.getMonth()) ==0) {
window.open("january.htm", "WindowNumber1", "scrollbars=yes,menubar=no,toolbar=no,width=500,height=400");
}
if((today.getMonth()) ==1) {
window.open("february.htm", "WindowNumber2", "scrollbars=yes,menubar=no,toolbar=no,width=500,height=400");
}
if((today.getMonth()) ==2) {
window.open("march.htm", "WindowNumber3", "scrollbars=yes,menubar=no,toolbar=no,width=500,height=400");
}
if((today.getMonth()) ==3) {
window.open("april.htm", "WindowNumber4", "scrollbars=yes,menubar=no,toolbar=no,width=500,height=400");
}
if((today.getMonth()) ==4) {
window.open("may.htm", "WindowNumber5", "scrollbars=yes,menubar=no,toolbar=no,width=500,height=400");
}
if((today.getMonth()) ==5) {
window.open("june.htm", "WindowNumber6", "scrollbars=yes,menubar=no,toolbar=no,width=500,height=400");
}
if((today.getMonth()) ==6) {
window.open("july.htm", "WindowNumber7", "scrollbars=yes,menubar=no,toolbar=no,width=500,height=400");
}
if((today.getMonth()) ==7) {
window.open("august.htm", "WindowNumber8", "scrollbars=yes,menubar=no,toolbar=no,width=500,height=400");
}
if((today.getMonth()) ==8) {
window.open("september.htm", "WindowNumber9", "scrollbars=yes,menubar=no,toolbar=no,width=500,height=400");
}
if((today.getMonth()) ==9) {
window.open("october.htm", "WindowNumber10", "scrollbars=yes,menubar=no,toolbar=no,width=500,height=400");
}
if((today.getMonth()) ==10) {
window.open("november.htm", "WindowNumber11", "scrollbars=yes,menubar=no,toolbar=no,width=500,height=400");
} 
if((today.getMonth()) ==11) {
window.open("december.htm", "WindowNumber12", "scrollbars=yes,menubar=no,toolbar=no,width=500,height=400");
}   
}

