var LargeImageURL = '';

// Open a new window and display the Filter parameter window ---
function fnContactInfo()
{
var vFeatures =
  "menubar=no,toolbar=no,status=no,resizable=no,scrollbars=no," +
  "width=260,height=175,left=80,top=80";

ContactInfo = window.open("contact.html", "ContactInfo",vFeatures);
}

// Display the ContactInfo -----------------------------------------------------
function fnShowContactInfo()
{
document.all.idContactInfo.style.display = 'block';
}

// Open a new window and display the Filter parameter window ---
function fnBiography()
{
var vFeatures =
  "menubar=no,toolbar=no,status=no,resizable=yes,scrollbars=no," +
  "width=600,height=525,left=20,top=20";

Biography = window.open("biography.html", "Biography",vFeatures);
}

// Open a new window and display a larger image ---
function fnOpenLargeImage()
{
LargeImageURL = retElById('iFile').src.replace('images/','large_images/');

var vFeatures =
  "menubar=no,toolbar=no,status=no,resizable=yes,scrollbars=yes," +
  "width=900,height=700,left=20,top=5";

Large_Image = window.open("large_image.html", "Large_Image",vFeatures);

Large_Image.focus();

Large_Image.imgMain.src = retElById('iFile').src;
}

// Return Element By Id - Cross-browser function to get element by Id ----------
function retElById(id)
{
if (document.getElementById)
    var returnVar = document.getElementById(id);
else if (document.all)
    var returnVar = document.all[id];
else if (document.layers)
    var returnVar = document.layers[id];
return returnVar;
}