﻿// JScript File

function swapimage(iname, swap, text, id)
{
    document.getElementById(id).innerText = text;
    document[iname].src = swap;
    //alert(iname);
    //alert(swap);
}

function swapimage2(iname, swap)
{
//    document.getElementById(id).innerText = text;
    document[iname].src = swap;
    //alert(iname);
    //alert(swap);
}
