
links = new Object();
//links[0] = "atlantic-schematics.html";
//links[1] = "atlantic-arrows.html";
//links[2] = "atlantic-maps.html";
//links[3] = "atlantic-videos.html";
links[0] = basin + "-schematics.html";
links[1] = basin + "-arrows.html";
links[2] = basin + "-maps.html";
links[3] = basin + "-videos.html";
links[4] = "search_abs.cgi";
links[5] = "../sfo/index.html";
links[6] = "../guestbook/guestbook.html";

names = new Object();
names[0] = "Schematic flow diagrams:";
names[1] = "Name/Location:";
names[2] = "Maps:";
names[3] = "Animations:";
names[4] = "Text Search:";
names[5] = "South Florida Outreach:";
names[6] = "Guest Book";

notes = new Object();
notes[0] = "Under Construction.";
notes[1] = "Know the Current Name, Find the Location.";
notes[2] = "Topography/Bathymetry, Historical Ship Drift, Drifting Buoy.";
notes[3] = "Drifting Buoy, MICOM model, AVHRR SST.";
notes[4] = "Search the Atlantic Ocean Texts for keywords.";
notes[5] = "";
notes[6] = "Sign our Guest Book.";

document.writeln(' <table id="table0" align="center">');
document.writeln('<tr><td colspan="2">');
document.writeln('<span id="title2">More Information ...</span>');
document.writeln('<table>');

// The 5 Rows in the Header
for( i = 0; i < 7; i++ ) {

  document.writeln('<tr><td valign="top">');
  document.writeln('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
  document.writeln('<img src="arrow.gif"></td>');
  document.writeln('<td><span id="text1">');
  document.writeln('<a href="',links[i],'"><b>',names[i],'</b></a>');
  document.writeln(notes[i]);
  document.writeln('</span></td></tr>');

}

document.writeln('</table>');

document.writeln('</td></tr>');
document.writeln('</table>');

