﻿              function newstypeRedirect (year,month,type)
              {
                    //ttg
                  var monthFixed;
                  if (month <= 9)
                  {
                      monthFixed = "0" + month;
                  }
                  if (type == '')
                      top.location.href='?year=' + year + '&month=' + monthFixed;
                  else
                  {
                      top.location.href='?year=' + year + '&month=' + monthFixed + '&type=' + type;
                  }
              }
              
              