﻿function OpenPhoto(image, title)
{
  var wnd = window.open('', '', 'toolbar=no,width=458,height=315');
  wnd.document.write("<html><head><title>");
  wnd.document.write(title);
  wnd.document.write("<" + "/" + "title>");
  wnd.document.write('<style>body { margin: 0px; padding: 5px; }</style>');
  wnd.document.write("<" + "/" + "head><body>");
  wnd.document.write("<img alt=\"\" src=\"" + image + "\" />");
  wnd.document.write("<" + "/" + "body>");
  wnd.document.write("<" + "/" + "html>");
}
function ToggleVisibility(obj)
{
  if(obj)
  {
    obj.style.display = obj.style.display == "none" ? "inline" : "none";
  }
  else
  {
    alert(obj);
  }
}
function ShowHide(id)
{
  if(document.getElementById)
  {
    ToggleVisibility(document.getElementById("imgShow" + id));
    ToggleVisibility(document.getElementById("imgHide" + id));
    ToggleVisibility(document.getElementById("Span" + id));
  }
}


