// next/previous press release
var	pname = location.pathname;
htm = pname.lastIndexOf(".htm");
frontslash = pname.lastIndexOf("/");
fname = pname.substring(frontslash+1,htm);

var prlist = new Array (
"pr080324a","pr080324","pr080219","pr080204","pr080117","pr080107",
"pr071220","pr071203","pr071106","pr071015","pr070918",
"pr070913","pr070820");	

// Skip over unmatched names
     pnum=0;
     while (prlist[pnum] != fname){
        pnum++;
     };

// May have links to previous, next, or both
     if (pnum+1 < prlist.length) {
       document.write ('<a href="' + prlist[pnum+1] + '.html">Prev</a>&nbsp;&nbsp;&nbsp;');
	 }
     if(pnum > 0) {
       document.write ('<a href="' + prlist[pnum-1] + '.html">Next</a><br>');
     } else {
       document.write ("<br>");
     };
