function swapImage(image) {

        document.images.largeimg.src = image;

}

function swapImage2(image,title) {
    var thetitle = document.getElementById("title");
    thetitle.firstChild.nodeValue = title;
    document.images.largeimg.src = image;
    document.images.largeimg.alt = title;
}
