/**
 * news.js
 *
 * @author Paul Horton <phorton@doc-net.com>
 * @copyright Doctor Net Limited &copy; 2009
 * @package WebSite.WebSite
 */

function go_to_news_category() {
   obj_selector = document.getElementById('int_news_category_id');
   str_selected_value = obj_selector.options[obj_selector.selectedIndex].value;

   if (str_selected_value != "") {
      window.location = str_selected_value;
   }
}

function go_to_news_archive() {
   obj_selector = document.getElementById('str_news_period');
   str_selected_value = obj_selector.options[obj_selector.selectedIndex].value;

   if (str_selected_value != "") {
      window.location = str_selected_value;
   }
}