<!--

// -------------------------------------------------- //
// Description:	Show or hide a layer.
// Parameters:
//		lyr   	The layer's ID.
//		action	Either "visible" or "hidden".		
// -------------------------------------------------- //
function showHideLayer(lyr,action)
{
  var obj = document.getElementById(lyr);
  obj.style.visibility = action;
}

// -------------------------------------------------- //
// Description:	Image rollover function.
// Parameters:
//		name   	The name of the image.
//		src	The image path to change to.
// -------------------------------------------------- //
function changeImage(name,src)
{
  if (document.images)
  {
      document[name].src = src;
  }
}

//-->
