// Creation of a NavBar.
// (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 makeNavBar()
{
document.writeln( "<TABLE BORDER=0 WIDTH=100% cellpadding=3 cellspacing=0 align=center><TR><TD VALIGN=TOP WIDTH=15%><FONT SIZE=-1 FACE=COURIER><B>" );
  makeBeanButton( "scotland.html", "Scotland" );
document.writeln( "</B></FONT></TD>" );
document.writeln( "<TD WIDTH=15% VALIGN=TOP><FONT SIZE=-1 FACE=COURIER><B>" );
  makeBeanButton( "france.html", "France" );
document.writeln( "</B></FONT></TD>" );
document.writeln( "<TD WIDTH=15% VALIGN=TOP><FONT SIZE=-1 FACE=COURIER><B>" );
  makeBeanButton( "bruss.html", "Belgium" );
document.writeln( "</B></FONT></TD>" );
document.writeln( "<TD WIDTH=15% VALIGN=TOP ><FONT SIZE=-1 FACE=COURIER><B>" );
  makeBeanButton( "malaysia.html", "Malaysia" );
document.writeln( "</B></FONT></TD>" );
document.writeln( "<TD WIDTH=15% VALIGN=TOP ><FONT SIZE=-1 FACE=COURIER><B>" );
  makeBeanButton( "itin.html", "Itinerary" );
document.writeln( "</B></FONT></TD>" );
document.writeln( "<TD WIDTH=15% VALIGN=TOP ><FONT SIZE=-1 FACE=COURIER><B>" );
  makeBeanButton( "map.html", "Site Map" );
document.writeln( "</B></FONT></TD>" );
document.writeln( "<TD WIDTH=10% VALIGN=TOP ><FONT SIZE=-1 FACE=COURIER><B>" ); 
  makeBeanButton( "index.html", "Home" );
document.writeln( "</B></FONT></TD></TR></TABLE>" );
}

