function navBar() {
var htmlcode = "";


htmlcode+= '<table class="doc-nav" width="224" cellspacing="0" style="border-collapse: collapse;" cellpadding="0">';
htmlcode+= '<tbody>';  
htmlcode+= '<tr>';
htmlcode+= '<th>Getting Started</th>';
htmlcode+= '</tr>';
htmlcode+= '<tr>';
htmlcode+= '<td><a href="Overview.html">Quick Start</a></td>';
htmlcode+= '</tr>';
htmlcode+= '<tr>';
htmlcode+= '<td><a href="ReleaseNotes.html" target="_new">Release Notes</a></td>';
htmlcode+= '</tr>';
htmlcode+= '<tr>';
htmlcode+= '<td><a href="Prereqs.html">Prerequisites</a></td>';
htmlcode+= '</tr>';
htmlcode+= '<tr>';
htmlcode+= '<th>Install and Configure</th>';
htmlcode+= '</tr>';
htmlcode+= '<tr>';
htmlcode+= '<td><a href="Install_wizard.html">Installation Folders</a></td>';
htmlcode+= '</tr>';
htmlcode+= '<tr>';
htmlcode+= '<td><a href="Configuration_wizard.html">Configuration</a></td>';
htmlcode+= '</tr>';
htmlcode+= '<tr>';
htmlcode+= '<th>Resources</th>';
htmlcode+= '</tr>';
htmlcode+= '<tr>';
htmlcode+= '<td><a href="http://www.activevos.com/products-certified-system-support.php" target="_new">Supported and Certified Platforms</a></td>';
htmlcode+= '</tr>';
htmlcode+= '<tr>';
htmlcode+= '<td><a href="Install_checklist.html">Installation Checklist</a></td>';
htmlcode+= '</tr>';
htmlcode+= '<tr>';
htmlcode+= '<td><a href="Glossary.html">Glossary of Terms</a></td>';
htmlcode+= '</tr>';
htmlcode+= '<tr>';
htmlcode+= '<td><a href="http://forums.active-endpoints.com">Support Forum</a></td>';
htmlcode+= '</tr>';
htmlcode+= '</tbody>';
htmlcode+= '</table>';



document.write(htmlcode);
}
