function ToggleBox(obj)
{
    
    var divArr = obj.parentNode.getElementsByTagName('div');
    var divContent = divArr[1];
//    for (var i=0; i<divArr.length;i++)
//    {
//        if (divArr[i].class=="content")
//        {
//            divContent=divArr[i];
//            break;
//        }
//    {
    if (divContent.style.display=="none")
        divContent.style.display="block";
    else
        divContent.style.display="none";
}

function DateBoxButtonClicked(selectYearId,selectMonthId)
{
    var selectYear = document.getElementById(selectYearId);
    var selectMonth = document.getElementById(selectMonthId);
    var year = selectYear.options[selectYear.selectedIndex].value;
    var month = selectMonth.options[selectMonth.selectedIndex].value;
//    if ((year==0)&&(month==0))
//        location.href=location.pathname;
//    else
        location.href=location.pathname+'?'+selectYearId+'='+year+'&'+selectMonthId+'='+month;
    
}
