﻿// JScript File


function FixImageOfTheMonthTitle()
{
    var myLink = document.getElementById("ImageOfTheMonthLink");
    var textValue = myLink.title;


var newtext = "<div align=center>We’re headed for the Bluebonnet state for the ALA Midwinter Meeting, January 20 – 23, <br/>And this image shows the lovely state flower of Texas from a 1922 postcard.  If you’re going <br/> to Dallas for Midwinter, stop by Booths 1153/1155 and talk to use about your  <br/>reformatting projects!</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;        
        

}
