﻿
function BookmarkPage()
{

var strTitle;
var strUrl;

 strTitle = document.title;
 strUrl = location.href;

 if (document.all)
 { 
  window.external.AddFavorite(strUrl, strTitle);
 }
 else if (window.sidebar)
 {
  window.sidebar.addPanel(strTitle, strUrl, "");
 }

}

function OpenImage(strFilename)
{

var objChild;

 objChild = document.getElementById("album_picture");

 objChild.style.display = "block";

 objChild = document.getElementById("album");

 objChild.style.display = "none";
 
 objChild = document.getElementById("album_picture_large");
 
 objChild.src = strFilename;
 
}

function CloseImage()
{

var objChild;

 objChild = document.getElementById("album_picture");

 objChild.style.display = "none";

 objChild = document.getElementById("album");

 objChild.style.display = "block";

}

