function SetButtons(){
var navigation;
var filename = window.location.href;
filename = filename.substr(filename.lastIndexOf("/") + 1);
navigation = "<table border='0' cellpadding='0' cellspacing='0' style='border-collapse: collapse' bordercolor='#111111'>"
if (filename != "index.htm") {
   navigation = navigation + "<tr><td><img onclick=\"window.open('index.htm','_self')\" onmouseover=\"this.src='images/home2.gif'\" onmouseout=\"this.src='images/home1.gif'\" src='images/home1.gif' Alt='' border='0' hspace='0' vspace='0' ></td></tr>"
}
navigation = navigation + "<tr><td><img onclick=\"window.open('catalog.htm','_self')\" onmouseover=\"this.src='images/catalogbutton2.gif'\" onmouseout=\"this.src='images/catalogbutton1.gif'\" src='images/catalogbutton1.gif' Alt='On-Line Catalog' border='0' hspace='0' vspace='0' ></td></tr>"
navigation = navigation + "<tr><td><img onclick=\"window.open('policies.htm','_self')\" onmouseover=\"this.src='images/policiesbutton2.gif'\" onmouseout=\"this.src='images/policiesbutton1.gif'\" src='images/policiesbutton1.gif' Alt='Ordering Policies' border='0' hspace='0' vspace='0' ></td></tr>"
navigation = navigation + "<tr><td><img onclick=\"window.open('newsletter.htm','_self')\" onmouseover=\"this.src='images/newsletter2.gif'\" onmouseout=\"this.src='images/newsletter1.gif'\" src='images/newsletter1.gif' Alt='Newsletter' border='0' hspace='0' vspace='0' ></td></tr>"
navigation = navigation + "<tr><td><img onclick=\"window.open('contact.htm','_self')\" onmouseover=\"this.src='images/contact2.gif'\" onmouseout=\"this.src='images/contact1.gif'\" src='images/contact1.gif' Alt='Contact Us' border='0' hspace='0' vspace='0' ></td></tr>"
navigation = navigation + "<tr><td><img onclick=\"window.open('links_old.htm','_self')\" onmouseover=\"this.src='images/Links-button2.gif'\" onmouseout=\"this.src='images/Links-button1.gif'\" src='images/Links-button1.gif' Alt='Links' border='0' hspace='0' vspace='0' ></td></tr>"
navigation = navigation + "</table>"

document.all.ctrlbtns.innerHTML=navigation
}
         
         
         
         
         
         
         
         
