/////////////////////////////////////////////////////////////////
//
// JavaScript Shared Functions for EasyHTMLHelp
//
////////////////////////////////////////////////////////////////

function syncTOC(){
   //For use in WebHelp
   //Add the switch HTMLExtraBody=onLoad="syncTOC()"
   if(typeof parent.easyhh_tocframe=="object"){
	if(parent.easyhh_tocframe.synchroniseTOC) parent.easyhh_tocframe.synchroniseTOC();
   }
}

//Default mouseover script attaches to the anchor tag
function swap(id,name)
{
  if (document.anchors(id))
    {
    var sHref = document.anchors(id).href;
    if (sHref.substring(sHref.length - 1) != "#")
      {
      if (document.images(id)) document.images(id).src=name;
      }
    }
  else
    {
    if (document.images(id)) document.images(id).src=name;
    }
}


/////////////////////////////////////////////////////////////////
//
// End of JavaScript Shared Functions
//
/////////////////////////////////////////////////////////////////
