function endit(currentname){ i=1; e=1; total=(names.length)-1; // determine total number of items in array // determine the position of the article while(i<=total){ matchit=names[i]; if(matchit == currentname){ pos=i; } i++; } // end while i=1 // select which item is associated with the previous button if(pos != 1){ prev=pos-1; gobackname=names[prev]; gobackdir=dirs[prev]; } else{ gobackname=prevcat; gobackdir=prevdir; } document.write(''); document.write(''); document.write(''); document.write(''); // select which item is associated with the next button if(pos < total){ next=pos+1; gotoname=names[next]; gotodir=dirs[next]; } else{ gotoname=nextcat; gotodir=nextdir; } document.write(''); document.write(''); document.write('
View This Magazines Previous Page - '+gobackname+''); document.write('Home - Cover - Contents - Media Kit - Submissions
Links - Subscribe - About Us - Contact Us'); document.write('
View This Magazines Next Page - '+gotoname+'
'); }