
function Popup( url ) {
    /* WebTV: 544x372 normal, 560x384 with (BODY HSPACE=0 VSPACE=0) */
    window.open(
	url,
	"PopUp",
	"width=540,height=550,menubar=0,resizable=1,location=0,scrollbars=1"
    );
}


function Item( title, link, popup ) {
    document.writeln("<tr>");
    document.writeln("<td>");
    document.writeln("<b><i>");

    if( link.length > 0 ) {
	if( popup.length > 0 ) {
	    document.write  ('<a href="' + link + '" target="' + popup + '" onClick="');
	    document.writeln("Popup('" + link + "'); return false;" + '">' );
	} else {
	    document.writeln("<a href='" + link + "'>");
	}
    }

    document.writeln("<font size=+2>" + title.substr(0,1) + "</font>" + title.substr(1) );

    if( link.length > 0 ) {
	document.writeln("</a>");
    }

    document.writeln("</i></b>");
    document.writeln("</td>");
    document.writeln("</tr>");
}

function Menu() {
    document.writeln("<table border=0 cellspacing=0 cellpadding=0 width='100%'>");
	Item( "News",                  "/News.html",                                    ""      );
	Item( "Reunion'05",            "/Reunion2005.html",                             ""      );
	Item( "Reunion 2000",          "/Reunion2000.html",                             ""      );
	Item( "Class Roster",          "/ClassRoster.html",                             ""      );
	Item( "Where They Are Now...", "/Maps/USA.html",                                ""      );
	Item( "Where Are They Now?",   "/Missing.html",                                 ""      );
	Item( "Photo Albums",          "/PhotoAlbums/PhotoAlbums.html",                 ""      );
	Item( "Post a Note",           "http://www.efsc.net/cfm/pbmsgbrd/pbtopics.cfm", "PopUp" );
	Item( "Triads on the Web",     "/WebLinks.html",                                ""      );
	Item( "E-mail Wendy",          "/EmailWendy.html",                              "PopUp" );
	Item( "Home",                  "/index.html",                                   ""      );
    document.writeln("</table>");
}

