<!-- hide this script from non-Javascript-enabled browsers

// sitewide.js
// written by Jake Cook
// designed for Sharp Homes of Augusta

/////////////////////////////////////////////////////////
// The displayMsg() function displays a message at the
// bottom of the browser window.
/////////////////////////////////////////////////////////

function displayMsg(message) {
    window.status=message
}

/////////////////////////////////////////////////////////
// The swap() function accepts two arguments, 
// name and source - <img NAME="" SRC="" border="0"> - 
// it replaces the file with the specific image name
// with the new image file.
/////////////////////////////////////////////////////////

function swap(id, newsrc) {
    var theImage = locateImage(id);
    if (theImage) {
        theImage.src = newsrc;
    }
}

/////////////////////////////////////////////////////////
// The locateImage() function accepts the name of an
// an image and returns the Image object associated
// with that name.
/////////////////////////////////////////////////////////

function locateImage(name) {
    var theImage = false;
    if (document.images) {
        theImage = document.images[name];
    }
    if (theImage) {
        return theImage;
    }
    return (false);
}

// stop hiding -->