// Creation of a NavBarFrance.
// (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 makeNavBarFrance()
{
document.writeln( "<TABLE WIDTH=10% ALIGN=LEFT VALIGN=TOP BGCOLOR=#FFFFFF CELLPADDING=5 CELLSPACING=0><TR><TD ALIGN=LEFT VALIGN=TOP><B>" );
  makeBeanButton( "paris.html", "Paris" );
document.writeln( "</B></A></TD></TR>");
document.writeln( "<TR><TD ALIGN=LEFT VALIGN=TOP><B>" );
  makeBeanButton( "toulouse.html", "Toulouse" );
document.writeln( "</B></A></TD></TR>");
document.writeln( "<TR><TD ALIGN=LEFT VALIGN=TOP><B>" );
  makeBeanButton( "pyrenees.html", "Pyrenees" );
document.writeln( "</B></A></TD></TR>");
document.writeln( "<TR><TD ALIGN=LEFT VALIGN=TOP><B>" );
  makeBeanButton( "pornic.html", "Pornic" );
document.writeln( "</B></A></P></TD></TR></TABLE>" );
}

