<!--
   function fnHighLight(intId)
   {
      switch (intId)
      {
        case "area1":
          document.getElementById("imgArea1").style.zIndex= 101;
          break;
        case "area2":
          document.getElementById("imgArea2").style.zIndex= 101;
          break;          
        case "area3":
          document.getElementById("imgArea3").style.zIndex= 101;
          break;          
      }
   }   
   function fnClickArea(strArea)
   {
/*       document.getElementById(strArea).click();*/
           document.location = document.getElementById(strArea).href;

   }
   function fnLowLight()
   {
          document.getElementById("imgArea1").style.zIndex= 99;
          document.getElementById("imgArea2").style.zIndex= 99;
          document.getElementById("imgArea3").style.zIndex= 99;
   }
//-->