function gotoMonth(whichSelectControl) {

if (document.getElementById(whichSelectControl).selectedIndex == 0) {}
 else{
   window.open(document.getElementById(whichSelectControl).value,'_self');return false;
 }


}