// JavaScript Document
function ro(who) { var tmp = ""; if (who.src.indexOf("_off") != -1) { tmp = who.src.replace("_off", "_on"); } else { tmp = who.src.replace("_on", "_off"); }; who.src = tmp; }