
// This script is © Aephid Technologies www.aephid.com.

function WriteGotoOldPhotokeeperLinkBlock()
{
  var block = new cGotoOldPhotokeeperLinkBlock();
  block.Write();
}

function cGotoOldPhotokeeperLinkBlock()
{
  this.m_parent = new cAephidLinkBlock;
  
  this.m_parent.m_TextAboveString = "Our old Photokeeper site is still here.";
  this.m_parent.m_ButtonString = "visit photokeeper";
  this.m_parent.m_UrlString = "http://www.aephid.com/photokeeper/index.html";
  this.m_parent.m_TextBelowString = "Still cool but aging.";
  
  this.Write =
  function()
    {
      this.m_parent.Write();
   }
}

