﻿  function newstypeRedirect (year,month,type)
  {
      if (type == '')
      {
          top.location.href='?year=' + year + '&month=' + month;
      }
      else
      {
          top.location.href='?year=' + year + '&month=' + month + '&type=' + type;
      }
  }
              
              
