// Common code

function topbar() {
// Top bar and top-level menu

   document.writeln("<div style=\"position: absolute; left: 0px; top: 0px; height: 60px; width: 750px; background-image: url('graphics/banner_bg.gif'); background_repeat: repeat-x; z-index: 1;\"></div>");
   document.writeln("<div style=\"position: absolute; left: 0px; top: 0px; width: 20px; height: 60px; background-image: url('graphics/banner_left.gif'); z-index: 90;\"></div>");
   document.writeln("<div style=\"position: absolute; left: 730px; top: 0px; width: 20px; height: 60px; background-image: url('graphics/banner_right.gif'); z-index: 100;\"></div>");
   document.writeln("<div style=\"position: absolute; left: 10px; top: 0px; width: 156px; height: 50px; border: 0; z-index: 100;\">");
   document.writeln("    <img src=\"graphics/cnr_logo3.gif\" width=\"204\" height=\"60\" alt=\"CNR\" hspace=\"0\" vspace=\"0\" />");
   document.writeln("</div>");

   document.writeln("<div style=\"position:absolute; left:214px; top:0px; width: 652px; height:60px; z-index:100;\">");
   document.writeln("   <div class=\"chromestyle\" id=\"chromemenu\">");
   document.writeln("     <ul>");
   document.writeln("        <li><a href=\"index.htm\">Home</a></li>");
   document.writeln("        <li><a href=\"about.htm\">About Us</a></li>");
   document.writeln("        <li><a href=\"#\" rel=\"dropmenu1\" style=\"color: #fff;\">Core Services</a></li>	");
   document.writeln("        <li><a href=\"markets.htm\">Markets</a></li>");
   document.writeln("        <li><a href=\"careers.htm\">Careers</a></li>");
   document.writeln("        <li><a href=\"#\" rel=\"dropmenu2\" style=\"color: #fff;\">Contact</a></li>	");
   document.writeln("     </ul>");
   document.writeln("   </div>");
   document.writeln("</div>");

   document.writeln("<div style=\"position: absolute; left: 0px; top:60px; width: 750px; height: 25px; background-image: url('graphics/cogs_strip2.jpg'); background-repeat: repeat-x; z-index: 100;\"></div>");
}

function footer() {
// Page footer

   document.writeln("<br clear=\"all\" />");
   document.writeln("<div id=\"footer\">");
   // document.writeln("   <span style=\"color: #ddd;\">CNR Ltd, The Old Kennels, Gonalston, Nottingham, UK, NG14 7JA</span><br />");
   // document.writeln("   t: 00 44 (0)845 009 8633&nbsp;|&nbsp;f: 00 44 (0)845 009 8634&nbsp;|&nbsp;e: <a href=\"mailto:admin@cnrdesign.co.uk\">admin@cnrdesign.co.uk</a>");
   document.writeln("</div>");

}

function dropdowns() {
// Drop down menu content

   document.writeln("<!--1st drop down menu ## CORE SERVICES ## -->");
   document.writeln("<div id=\"dropmenu1\" class=\"dropmenudiv\" style=\"width: 180px;\">");
   document.writeln("  <a href=\"concept_development.htm\">Concepts &amp; Development</a>");
   document.writeln("  <a href=\"product_optimisation.htm\">Product Optimisation</a>");
   document.writeln("  <a href=\"management_services.htm\">Management Services</a>");
   document.writeln("  <a href=\"testing_integration.htm\">Testing &amp; Integration</a>");
   document.writeln("</div>");
    
   document.writeln("<!--2nd drop down menu ## CONTACT ## -->");
   document.writeln("<div id=\"dropmenu2\" class=\"dropmenudiv\" style=\"width: 180px;\">");
   document.writeln("  <a href=\"contact_form.php\">Contact Form</a>");
   document.writeln("  <a href=\"map_and_directions.htm\">Map &amp; Directions</a>");
   document.writeln("</div>");

}
