

function gotoCurrent() {
    if (document.reportCurrent.reportList.options[document.reportCurrent.reportList.selectedIndex].value == '#') return;
	parent.frames[1].location=document.reportCurrent.reportList.options[document.reportCurrent.reportList.selectedIndex].value;
}

function gotoDay() {
    if (document.reportDay.reportList.options[document.reportDay.reportList.selectedIndex].value == '#') return;
	parent.frames[1].location=document.reportDay.reportList.options[document.reportDay.reportList.selectedIndex].value;
}


function gotoWeek() {
    if (document.reportWeek.reportList.options[document.reportWeek.reportList.selectedIndex].value == '#') return;
	parent.frames[1].location=document.reportWeek.reportList.options[document.reportWeek.reportList.selectedIndex].value;
}

function gotoMonth() {
    if (document.reportMonth.reportList.options[document.reportMonth.reportList.selectedIndex].value == '#') return;
	parent.frames[1].location=document.reportMonth.reportList.options[document.reportMonth.reportList.selectedIndex].value;
}

function gotoQuarter() {
    if (document.reportQuarter.reportList.options[document.reportQuarter.reportList.selectedIndex].value == '#') return;
	parent.frames[1].location=document.reportQuarter.reportList.options[document.reportQuarter.reportList.selectedIndex].value;
}

