
<!--
/*
Add Additional Links To The Sub Menu For Admins
Created By Peter
http://s9.invisionfree.com/iFusion/
*/

function newLink(link, txt){
    var iCell = document.getElementsByTagName("td");
    for(c=0;c<iCell.length;c++){
        if(iCell[c].firstChild.nodeName.toLowerCase() == "strong" && iCell[c].innerHTML.match(/Mod CP/)){
            var nLink = document.createElement("a");
            var nTxt = document.createTextNode(txt);
            var nBold = document.createElement("b");
            var mTxt = document.createTextNode(" · ");

            nLink.href = link;
            iCell[c].insertBefore(mTxt, iCell[c].lastChild);
            nBold.appendChild(nTxt);
            nLink.appendChild(nBold);
            if(iCell[c].lastChild.nodeType == 3){
                iCell[c].insertBefore(nLink, iCell[c].lastChild);
            }
        }
    }
}

//Add more links if you need to
newLink("http://s4.invisionfree.com/North_Castle/index.php?act=Online&CODE=listall&sort_key=click", "Spy Tool");

//-->
