//  =======================================================
//  Display Layer  popup
// ========================================================

isNS4 = (document.layers) ? true : false;
isIE4 = (document.all && !document.getElementById) ? true : false;
isIE5 = (document.all && document.getElementById) ? true : false;
isNS6 = (!document.all && document.getElementById) ? true : false;


var layerRef="null",styleSwitch="null",rightBrace="null",leftBrace="null";
  if (isNS4)
  {
    layerRef="document.layers";
    styleSwitch="";
	rightBrace="["
	leftBrace="]"
  }
  else if (isIE4)
  {
    layerRef="document.all";
    styleSwitch=".style";
	rightBrace="("
	leftBrace=")"
  }
  
  else if (isIE5 || isNS6)
  {
  layerRef="document.getElementById";
  styleSwitch=".style";
  rightBrace="("
  leftBrace=")"
  }
  
  function showLayer(layerName)
  {
    eval(layerRef+rightBrace+'"'+layerName+'"'+leftBrace+styleSwitch+'.visibility="visible"');
  }
  function hideLayer(layerName)
  {
    eval(layerRef+rightBrace+'"'+layerName+'"'+leftBrace+styleSwitch+'.visibility="hidden"');
  }

