var navlist = [{title: "Home", page: "home", target: "index.html", page_target: "#top"},
                     {title: "About Us", page: "aboutus", target: "aboutus.htm", page_target: "#top"},
                     {title: "Products", page: "home", target: "index.html#products", page_target: "#products"},
                     {title: "Ordering Information", page: "info", target: "info.htm", page_target: "#ordering"},
                     {title: "Shipping Information", page: "info", target: "info.htm#shipping", page_target: "#shipping"},
                     {title: "Return Policy", page: "info", target: "info.htm#return", page_target: "#return"},
                     {title: "Privacy Policy", page: "info", target: "info.htm#privacy", page_target: "#privacy"},
                     {title: "Building Tips", page: "tips", target: "tips.htm", page_target: "#top"},
                     {title: "View Shopping Cart", page: "void", target: " http://ww3.aitsafe.com/cf/review.cfm?userid=5116894"},
                     {title: "Check Out", page: "void", target: "http://ww3.aitsafe.com/cf/review.cfm?userid=5116894"}];

var navcolors = new Object;

function navigation_bar(this_page)
     {document.write('<table cellspacing="5" border="2" width="190" bordercolor="maroon">');
           for (var x=0; x<navlist.length; x++)
             { if (this_page == navlist[x].page)
                 {   navcolors = {bgcolor: "lightcyan", fontcolor: "maroon"};
                      next_page = navlist[x].page_target;   }
               else
                 {   navcolors = {bgcolor: "darkcyan", fontcolor: "lightcyan"};
                      next_page = navlist[x].target;    }
                document.write('<tr><td nowrap align=center bgcolor="', navcolors.bgcolor, '">');
                document.write('<a href="', next_page, '"><font color="',  navcolors.fontcolor, '">',    navlist[x].title, '</font></a>');
                document.write("</td></tr>");   }
        document.write('</table>');     }

function closing_links(home_page)
     {if (home_page)
             {   document.write('<hr width="75%"><br>');   }
       else
             {   document.write('<hr><br>');    }
       document.write('<font size="2"><p align=center>'); 
       document.write('<a href="#top">Top</a> . ');
       document.write('<a href="index.html">Home</a> . ');
       document.write('<a href="index.html#products">Products</a> . ');
       document.write('<a href="aboutus.htm">About Us</a> . ');
       document.write('<a href="tips.htm">Building Tips</a><br>');
       document.write('<a href="info.htm">Ordering Information</a> . ');
       document.write('<a href="info.htm#shipping">Shipping Information</a> . ');
       document.write('<a href="info.htm#return">Return Policy</a> . ');
       document.write('<a href="info.htm#privacy">Privacy Policy</a><br>');
       document.write('<a href="http://ww3.aitsafe.com/cf/review.cfm?userid=5116894">View Shopping Cart</a> . ');
       document.write('<a href="http://ww3.aitsafe.com/cf/review.cfm?userid=5116894">Check Out</a><br><br></p>');
       document.write('<hr width="75%"><br>');
       document.write('<p align=center>');
       document.write('<a href="mailto:dhdreams@iowatelecom.net">Dollhouse Dreams & Miniature Wishes</a><br><br>');
       if (home_page) 
           {  document.write('<a href="mailto:natnmatt@inav.net">Site built by NatnMatt.</a><br><br>');  }
       document.write('</p></font>');    }


