
  function EditLayer(idx, content) {
    if(document.getElementById)
      document.getElementById(idx).innerHTML = content;
    else {
      if (document.all[idx])
        document.all[idx].innerHTML = content;
    }
  }

  function EditHyperLink(idx, url) {
    if(document.getElementById)
      document.getElementById(idx).href = url;
    else {
      if (document.all[idx])
        document.all[idx].href = url;
    }
  }

  function showImg(ImgId, Type, ImgFullPath, EventTitle, ImgDesc, ImgWidth, ImgHeight) {
    	//document.formulaire.BigImage.value = Img;
    	document.midImage.src = ImgFullPath;
      EditLayer('eventTitle', EventTitle);
      EditLayer('photoDesc', ImgDesc);
      EditHyperLink('imgLink', 'summummax.php?type=' + Type + '&id=' + ImgId);
      document.midImage.width  = ImgWidth;
      document.midImage.height = ImgHeight;
  }

