﻿/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Jeremy Keith / Anonymous | http://www.alistapart.com/articles/imagegallery/ */
function showPic(whichpic) 
{
  if (document.getElementById) 
  {
    document.getElementById('placeholder').src = whichpic.id;
    var hidSelectedPhoto=document.getElementById("selectedPhoto");
    hidSelectedPhoto.value=whichpic.id;
    var hidselectedPhotoDesc=document.getElementById("selectedPhotoDesc");
    if (whichpic.title) 
    {
      document.getElementById('desc').childNodes[0].nodeValue = whichpic.title;
      hidselectedPhotoDesc.value=whichpic.title;
    } 
    else 
    {
      document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
      hidselectedPhotoDesc.value=whichpic.childNodes[0].nodeValue;
    }
    return false;
  } 
  else 
  {
    return true;
  }
}

var previousToggle=null;
function toggleMe(a){
  var e=document.getElementById(a);
  if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block";
    if(previousToggle)previousToggle.style.display="none";
    previousToggle=e;
  }
  return true;
}
