﻿// JScript File

var oldColor;

function SwapNew(obj, strNew){

    oldColor = obj.style.color;
    obj.style.color = strNew;

}

function SwapOld(obj){

    obj.style.color = oldColor;

}

function SwapThis(obj,strNew){

    obj.style.backgroundImage = "url(http://nebulas.topitconsultant.eu/" + strNew + ")";

}



