var activatorCount=1;
if(activatorPrevious) { activatorCount=activatorPrevious+1; }
var activatorEle=document.getElementById("activator"+activatorCount);
if(activatorEle) {
    var activatorHtm=activatorEle.innerHTML;
    if(activatorHtm.indexOf("<!--")==0 && activatorHtm.lastIndexOf("-->")==activatorHtm.length-3) {
        document.writeln(activatorHtm.substring(4,activatorHtm.length-3));
        }
    }
var activatorPrevious=activatorCount;