lEnabled=false

function Generic(tcLink)
{
   lEnabled=true
   document.getElementById("IFrameGeneric").src = "DataEntrySpanit.aspx?Session="+tcLink
}

function DisplayPhoto(tcLink)
{
   lEnabled=true
   document.getElementById("IFrameDisplayPhoto").src = "DataEntrySpanit.aspx?Session="+tcLink
}

function GenericOnLoad()
{
   if (lEnabled)
   {
      lEnabled=false
      lcDiv = document.getElementById("Generic")

      if (document.getElementById("IFrameGeneric").contentWindow.document)
      {
         lcIFrame = document.getElementById("IFrameGeneric").contentWindow.document.body.innerHTML
      }

      lcDiv.innerHTML = lcIFrame
   }
}

function DisplayPhotoOnLoad()
{
   if (lEnabled)
   {
      lEnabled=false
      lcDiv = document.getElementById("GenericPhoto")

      if (document.getElementById("IFrameDisplayPhoto").contentWindow.document)
      {
         lcIFrame = document.getElementById("IFrameDisplayPhoto").contentWindow.document.body.innerHTML
      }

      lcDiv.innerHTML = lcIFrame

   }
}
