/*****************************************************************

   --- Start of creation ---

   Created
      By : Christian SX Kembuan
      At : April 18th, 2006

   Last Modified
      By : -
      At : -

   Content :
   - Define following functions
        select_news()

   --- End of creation ---

*****************************************************************/

function select_news(news_id, news_category) {

   form = document.fm_news;
   form.news_category.value = news_category;
   form.news_id.value = news_id;
   form.action = './berita.php';
   form.submit();

} /* function select_news */
