﻿// JScript File


function FixImageOfTheMonthTitle()
{
    var myLink = document.getElementById("ImageOfTheMonthLink");
    var textValue = myLink.title;

    var newtext = '<div align=center>This card, showing a drawing of the new Wisconsin state capitol building,<br/>was sent from Madison, Wisconsin to Jerico Springs, Missouri in 1906,<br/>asking the recipient to write soon.<br/> We hope to see you soon at a conference this spring.</div>';    


    if (textValue == null) // firefox
        myLink.attributes.data.value = newtext;
    else
       myLink.title = newtext;        
        



}

function fixImageTitle()
{
    var myLink = document.getElementById("ImageOfTheMonthLink");
    var textValue = myLink.title;

    var newtext = "Click for Larger Image";    
    
    if (textValue == null) // firefox
        myLink.attributes.data.value = newtext;
    else
       myLink.title = newtext;        
        

}