function selectPeriod(selectObj) {
    if (selectObj.options[selectObj.selectedIndex].value != "null") {
        document.location = selectObj.options[selectObj.selectedIndex].value;
    }
}

