<!--

	function rollOver(elem, elem2, clr)
	{
		elem.style.color = '#FFFFCC';
		elem2.style.backgroundColor = clr;
		elem2.style.cursor = 'hand';
	}
	
	function rollOut(elem, elem2, clr)
	{
		elem.style.color = 'black';
		elem2.style.backgroundColor = clr;
	}
	
	function rollDown(elem, clr)
	{
		elem.style.backgroundColor = clr;
	}
	
	function rollUp(path)
	{
		location.href = path;
	}
	
	function ConfirmDel(ID) {
  if (confirm('Are you sure you want to delete this News Article?'))
  {
    window.location = "/admin/deletenews_2.php?id=" + ID;
  }
}

// -->