
/* dropdownType
   NEWS		0
*/

function dropdownredirector(ix,type)
{switch (parseInt(ix))
   {case 0: /* all items */
     switch (parseInt(type))
      {case 0: document.location.href='news.aspx'; break;
       default: alert ('not implemented'); break;
      }
     break;
     
    default: 
     /* individual items */
     switch (parseInt(type))
      {case 0: document.location.href='news.aspx?type=7&dataitem='+ix; break;
       default: alert ('not implemented'); break;
      }
     break; 
	}
}
