<!--
  function init(){} 

  function showLayer(layerName){
    HideAllPopUps();
	document.getElementById(layerName).style.visibility="visible"; 
  } 

  function hideLayer(layerName){
	document.getElementById(layerName).style.visibility="hidden"; 
  } 

  function HideAllPopUps(){ 
    hideLayer("hardMenu2"); 
    hideLayer("hardMenu"); 
  }
//-->
