// Javascript file for www.elapsetech.com
// Author: Charles Crepin 2008

function SwapImage(objectToChange, sourcePath) {
    objectToChange.src = sourcePath;
    return true;
}