/*
copyright 2005: Central United Church
Author: Josh Greig
*/

function MouseOver(e)
{
  e.bgColor = '#ffcfcf';
}

function MouseOut(e)
{
  e.bgColor = '#f8f8ff';
}

function Goto(targ,url)
/*
    purpose: directing the page to another address
       opens in current window
*/
{
  var target = document.getElementById(targ);

   if (target==null)
   {
  //    alert('Target for GoTo function is null');
     if (navigator.appName.indexOf("Microsoft")) // if using Internet Explorer
       document.location.href=url;
     else
       document.location.href=url;
  
   }
   else
      target.src = url;
}




