/* gedmill.js
 * Version 1.8
 * Copyright (C) 2006 Alexander Curtis
 */
 
// Shows selected mini image in main image window
function updateMainPhoto(name, title, link )
{

  if (document.all) 
  {
    document.all.mainphoto_img.src = name; 
    document.all.mainphoto_img.alt = title; 
    document.all.mainphoto_title.innerHTML = title; 
    if( link != null )
    {
      document.all.mainphoto_link.href = link; 
    }
  }
  else if (document.getElementById) 
  {
    document.getElementById('mainphoto_img').src = name;    
    document.getElementById('mainphoto_img').alt = title;
    document.getElementById('mainphoto_title').innerHTML = title;
    if( link != null )
    {
      document.getElementById('mainphoto_link').href = link;
    }
  }
  
}

