// JavaScript Document
<!--//--><![CDATA[//><!--
currentnum = 1;

function show(name, gothere, maxpages) {
 //var status = document.getElementById(name).style.display;
 //alert (gothere); alert (currentnum); 
 //alert (eval(currentnum)+eval(gothere));
 gotherenow = eval(currentnum)+eval(gothere);
 if (gotherenow>maxpages) gotherenow = 1;
 if (gotherenow<1) gotherenow = maxpages;
 //alert (name+gotherenow);
 if(document.getElementById) {
   document.getElementById(name+gotherenow).style.display = "block";
   document.getElementById(name+currentnum).style.display = "none";
   currentnum = gotherenow;
   }
}

//--><!]]>
