﻿// JScript File


function FixImageOfTheMonthTitle()
{
    var myLink = document.getElementById("ImageOfTheMonthLink");
    var textValue = myLink.title;


var newtext = "<div align=center>Summer’s winding down but perhaps not for this boy of summer and his <br/>  girl! Image from a postcard sent from Winona, MN to Kasson, MN <br/>in 1915.  We hope you enjoy your last days of summer. . . .</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;        
        

}