<!--
var forwardlinks = new Array
forwardlinks[1] = "other_oth001.htm" 
forwardlinks[2] = "other_oth002.htm"
forwardlinks[3] = "../other_linen.htm"

var backlinks = new Array
backlinks[1] = "other_oth002.htm"
backlinks[2] = "other_oth001.htm"
backlinks[3] = "../other_linen.htm"

function chgForward(){
var next;
next = 1;
if (window.location.href.indexOf(forwardlinks[1]) != -1)
{next=1}
else if (window.location.href.indexOf(forwardlinks[2]) != -1)
{next=2}
else if (window.location.href.indexOf(forwardlinks[3]) != -1)
{next=3}
if (next < 4){
next++;
}
else{
next = 1;
}
window.location.href = forwardlinks[next]
}

function chgBack(){
var previous;
previous = 1;
if (window.location.href.indexOf(backlinks[1]) != -1)
{previous=1}
else if (window.location.href.indexOf(backlinks[2]) != -1)
{previous=2}
else if (window.location.href.indexOf(backlinks[3]) != -1)
{previous=3}
if (previous < 4){
previous++;
}
else{
previous = 1;
}
window.location.href = backlinks[previous]
}
//-->
