function formatTopNav(TN_Info,ContentName) { var oTD = null; TN_Info = unescape(TN_Info); aryTN_Info = TN_Info.split(';') sContent = new String(); for(var t = 1; t < aryTN_Info.length; t++) { aryNewTN = aryTN_Info[t].split(',') sText = aryNewTN[0]; sPath = aryNewTN[1]; sOrder = aryNewTN[2]; sText = unescape(sText); sPathArray = sPath.split('/') for(var p = 0; p < sPathArray.length; p++) { //alert(sPathArray) if (p == sPathArray.length -1){ //alert(sPathArray[p]) PageName = sPathArray[p].replace(".html","") //alert(PageName) } } //sImgText = sText.replace(/ /g,'_') Left_PageName = "nav_left_" + PageName ContentName = ContentName.replace(".html","") if (ContentName == PageName) { sContent += '' sContent += '' }else { sContent += '' sContent += '' sContent += '' } } return sContent } // // Rollover // function Hilite(name,over) { //alert(name + " " + over) if(window.document.images) { if (over) { window.document.images[name].src = "/SiteGen/Uploads/Public/Skin_CCNC_2009/" + name + "_on.gif"; } else { window.document.images[name].src = "/SiteGen/Uploads/Public/Skin_CCNC_2009/" + name + ".gif"; } } }