function OpenPage() {

	document.writeln("<TABLE CLASS=main WIDTH=100%>");

	document.writeln("<TR VALIGN=top><TD WIDTH=160>");

	MakeMenu();

	document.writeln("</TD><TD><BR/>");

}



function ClosePage() {

	document.writeln("</TD><TR></TABLE>");

	document.writeln("<P CLASS=closing>Copyright &copy; 2003, 2006, 2007, 2008, 2009, 2010, 2011 The USS Odyssey, United Space Federation. Original site design by USFArronax.  Current Webmaster: FltCptCrelak</P>");

}





function MakeMenu() {

	

	document.writeln("<TABLE CLASS=menu CELLSPACING=0 CELLPADDING=0>");

	document.writeln("<TR><TD HEIGHT=30></TD></TR>");

	MenuItem("Odyssey Home", "index.html");

	MenuItem("Ship History", "history.html");

	MenuItem("Ship Specifications", "specs.html");

	MenuItem("Crew Roster &amp; Bios", "roster.html");

	MenuItem("Mission Briefings", "briefings.html");

	MenuItem("Crew Awards", "awards.html");

	MenuItem("Join the USF", "http://www.sector001.com/application.html");

	MenuItem("Sim Handbook", "http://www.sector001.com/simguide");

	MenuItem("Sector001.com", "http://www.sector001.com");

	document.writeln("<TR><TD HEIGHT=15></TD></TR>");

	document.writeln("</TABLE>");

	

}



function MenuItem(caption, url) {

	document.writeln("<TR><TD CLASS=item><A HREF=" + url + ">" + caption + "</A></TD></TR>");

}



function RosterCategory(name) {

	document.writeln("<TR><TD CLASS=rostercategory COLSPAN=3>" + name + "</TD></TR>");

}



function RosterItem(position, name, biolink, status) {

	document.writeln("<TR CLASS='" + status + "'><TD CLASS=rosterposition>" + position + "</TD>");

	document.writeln("<TD CLASS=rostername>");

	if (biolink != "") { document.writeln("<A HREF=" + biolink + ">"); }

	document.writeln(name);

	if (biolink != "") { document.writeln("</A>"); }

	document.writeln("</TD><TD CLASS=rosterstatus>");

	if (status != "") { document.writeln(" [" + status + "]"); }

	document.writeln("</TD></TR>");



}




