if (((document.forms[0].Type.value == "Sections") || (document.forms[0].Type.value == "Subsections") || (document.forms[0].PageType.value == "article")) && (document.forms[0].Section.value != "Publishers") && (document.forms[0].PageType.value != "home")) { // set the start and count values var Count = 10; var Start = 1; sectStr = document.forms[0].SectionItems.value; subsectStr = document.forms[0].SubsectionItems.value; var sectionList = sectStr.split('; '); var subsectionList = subsectStr.split('; '); document.write('
'); //document.write('
'); document.write(''); for (var i = 0; i < sectionList.length; i ++) { if ( sectionList[i] == currentSection ) { for (var j = 0; j < subsectionList.length; j++) { var thisSubsectionList = new Array(); thisSubsectionList = subsectionList[j].split(escape('>')); if (thisSubsectionList[0] == currentSection ) { document.write(''); document.write(''); document.write(''); document.write(''); } } } } document.write('
 ',unescape(thisSubsectionList[1]),' 
'); }