/*This script writes the title on the top of each page*/

function display_title()
{
     document.write('<div ID=TitleDiv STYLE="position: absolute; top: 5; left: 275; height:100;width:300">');
     document.write('<p class="BookTitle" id="Book_Title">');
     document.write('Adept SmartMotion Developer\'s Guide');
     document.write('</p>');
      document.write('<p class="BookLinks" id="Book_Links">'); 

document.write('<a href="document_map.html" onClick="window.open(\'document_map.h');
document.write('tml\', \'map\', \'width=500,height=400,resizable=yes,scrollbars=yes,status=1,dependent=yes\'); return false;"> Doc');
document.write('ument Map</a>');
         document.write('&nbsp;&nbsp;&nbsp;&nbsp;<a target="_blank" href="../../adept_title_index.htm">Adept Document Library</a>'); 
     document.write('</p>');
     document.write('</div>');
    

}



