// NAVBAR.JS
// This is an automatic header and navigation bar for any web page page.
// It pulls the document title and places it into a default DIV style anywhere on the page

document.write('<div class="navcolor"><div id=\"navbar1\">'); 
document.write('<ul>'); 
document.write('<li><img name="TITLE.GIF" src="_COMMON/TITLE.GIF" border="0" align=left align=middle alt=""></li>');
document.write('<li><a href=\"HOME.HTM\">Home</a><\/li>');
document.write('<li><a href="HYPNOSIS.HTM">Hypnosis</a><\/li>');
document.write('<li><a href="CONTACT.HTM">Contact</a><\/li>');
document.write('<li><a href="BROCHURE.HTM">Brochure</a><\/li>');
document.write('<\/ul>');
document.write('</div></div>');


// This can be called from anywhere on the web page and will drop into place directly 
// on the page where you place it. 



