// JavaScript Document

//var url_news='http://localhost/hopecherryville/utilities/news/';
var url_news='http://www.hopecherryville.org/utilities/news/';

function showfull(item)
{ 
  var bodyelem='body_' + item;
  var linkelem='link_' + item;
  
  $(bodyelem).update('Loading....');
  $(linkelem).update('<a href="javascript:showshort(' + item + ');">[Collapse]</a>');
  
  var url=url_news+"getnews.php";
  url = url+"?action=full&item="+item;
  
  new Ajax.Updater(bodyelem, url, { method: 'get' });
}

function showshort(item)
{ 
  var bodyelem='body_' + item;
  var linkelem='link_' + item;
  
  $(bodyelem).update('Loading....');
  $(linkelem).update('<a href="javascript:showfull(' + item + ');">[Read More]</a>');

  var url=url_news+"getnews.php";
  url=url+"?action=summary&item="+item;

  new Ajax.Updater({ success:bodyelem, failure:bodyelem }, url, { method: 'get' });
}

function disp_confirm(message,gotourl)
{
var r=confirm(message);
if (r==true)
  {
  location.href=gotourl;
  }
else
  {
  return false;
  }
}
