function iSwap(obj) { if (obj.style.backgroundImage.indexOf("On.") > 0) { obj.style.backgroundImage = obj.style.backgroundImage.replace("On.", "Off."); } else { if (obj.style.backgroundImage.indexOf("Off.") > 0) { obj.style.backgroundImage = obj.style.backgroundImage.replace("Off.", "On."); } } }