// Creation of a NavBarScot.
// (c) 2000 - Narelle Lewis Designs - Y. Rutschle

// This creates a navbar built from bean buttons. See button.js for button details.
// The navbar is meant to be loaded as a cell of a table.

function makeNavBarScot()
{
document.writeln( "<TABLE WIDTH=10% ALIGN=LEFT VALIGN=TOP BGCOLOR=#FFFFFF CELLPADDING=5 CELLSPACING=0><TR><TD ALIGN=LEFT VALIGN=TOP><B>" );
  makeBeanButton( "edinburgh1.html", "Edinburgh - The flat" );
document.writeln( "</B></A></TD></TR>");
document.writeln( "<TR><TD ALIGN=LEFT VALIGN=TOP><B>" );
  makeBeanButton( "edinburgh2a.html", "Edinburgh - The city" );
document.writeln( "</B></A></TD></TR>");
document.writeln( "<TR><TD ALIGN=LEFT VALIGN=TOP><B>" );
  makeBeanButton( "edinburgh3.html", "Edinburgh - The outskirts" );
document.writeln( "</B></A></TD></TR>");
document.writeln( "<TR><TD ALIGN=LEFT VALIGN=TOP><B>" );
  makeBeanButton( "highlands.html", "Highlands" );
document.writeln( "</B></A></TD></TR>");
document.writeln( "<TR><TD ALIGN=LEFT VALIGN=TOP><B>" );
  makeBeanButton( "Lochness.html", "Lochness" );
document.writeln( "</B></A></TD></TR>");
document.writeln( "<TR><TD ALIGN=LEFT VALIGN=TOP><B>" );
  makeBeanButton( "inver.html", "Inverness" );
document.writeln( "</B></A></TD></TR>");
document.writeln( "<TR><TD ALIGN=LEFT VALIGN=TOP><B>" );
  makeBeanButton( "nevis.html", "Ben&nbsp;Nevis" );
document.writeln( "</B></A></P></TD></TR></TABLE>" );
}
