var URL;
var V;
var L1="<div style='top:25px;margin:0 auto;width:270px;font-family:Verdana;font-size:12px;color:#037;z-index:1;'>";
var L2="&lt; <a href='Javascript:PrevPage()' style='color:#037'> Prev</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
var L3="<a href='../H835Cat.htm' style='color:#037'>back to Catalog</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"
var L4="<a href='Javascript:NextPage()' style='color:#037'>Next</a> &gt;</div>";
document.write(L1+L2+L3+L4);
var S=document.location.href;
if (S.search("Technical")>0) URL="H835_Technical_";
if (S.search("Slides")>0) URL="H835_Slides_";
if (S.search("Accessories")>0) URL="H835_Accessories_";
if (S.search("Electronics")>0) URL="H835_Electronics_";
if (S.search("Software")>0) URL="H835_Software_";if (S.search("Intro")>0) URL="H835_Intro_"; 
var R=S.slice(-8,-4);
 V=R.match(/[0-9.]+/);

function PrevPage(){
V=parseInt(V)-1;
URL=URL+V+".htm";
if (URL=="H835_Intro_0.htm") URL="H835_Intro_1.htm";
if (URL=="H835_Technical_0.htm") URL="H835_Intro_4.htm";
if (URL=="H835_Slides_0.htm") URL="H835_Technical_48.htm";
if (URL=="H835_Accessories_0.htm") URL="H835_Slides_44.htm";
if (URL=="H835_Electronics_0.htm") URL="H835_Accessories_12.htm";
if (URL=="H835_Software_0.htm") URL="H835_Electronics_24.htm";
document.location.href=URL;
}
function NextPage(){
V=parseInt(V)+1; 
URL=URL+V+".htm";
if (URL=="H835_Intro_5.htm") URL="H835_Technical_1.htm";
if (URL=="H835_Technical_49.htm") URL="H835_Slides_1.htm";
if (URL=="H835_Slides_45.htm") URL="H835_Accessories_1.htm";
if (URL=="H835_Accessories_13.htm") URL="H835_Electronics_1.htm";
if (URL=="H835_Electronics_25.htm") URL="H835_Software_1.htm";
if (URL=="H835_Software_13.htm"){
alert("This is the Last Page");
URL="H835_Software_12.htm";
}
document.location.href=URL;
}
