with (document)
{
  write ('<div class="menu">');
	write ('<a href="../index.html">Home</a>');
	
  if (document.title == "Overview")
    write ('<a id="sel" href="o_overview.html">Overview</a>');
  else
    write ('<a href="o_overview.html">Overview</a>');
  
  if (document.title == "File screen")
	  write ('<a id="sel" href="o_files.html">File screen</a>');
  else
	  write ('<a href="o_files.html">File screen</a>');
  
  if (document.title == "Key screen")
	  write ('<a id="sel" href="o_keys.html">Key screen</a>');
  else
    write ('<a href="o_keys.html">Key screen</a>');
  
  if (document.title == "Detail screen")
	  write ('<a id="sel" href="o_single.html">Detail screen</a>');
  else
	  write ('<a href="o_single.html">Detail screen</a>');

  if (document.title == "Report screen")
	  write ('<a id="sel" href="o_multi.html">Report screen</a>');
	else
	  write ('<a href="o_multi.html">Report screen</a>');

  if (document.title == "Starting values window")
	  write ('<a id="sel" href="o_start.html">Starting values</a>');
	else
	  write ('<a href="o_start.html">Starting values</a>');

  if (document.title == "Where criteria window")
	  write ('<a id="sel" href="o_where.html">Where criteria</a>');
	else
	  write ('<a href="o_where.html">Where criteria</a>');

  if (document.title == "Edit mask window")
	  write ('<a id="sel" href="o_editmask.html">Edit masks</a>');
	else
	  write ('<a href="o_editmask.html">Edit masks</a>');

  if (document.title == "Modifying data")
	  write ('<a id="sel" href="o_update.html">Modifying data</a>');
	else
	  write ('<a href="o_update.html">Modifying data</a>');

  if (document.title == "Other features")
	  write ('<a id="sel" href="o_features.html">Other features</a>');
	else
	  write ('<a href="o_features.html">Other features</a>');

  write ('</div>');
}