function ShowMenu(dir)
{
    //var links = new String[] {"index.html", "publications.html", "gm.html", "opsim.html", "emctkp/index.html", "software.html", "link.html", "http://www.caip.rutgers.edu/disciple" };
    
    window.document.open();
    window.document.write("\
	<div class='p1' id='menu'>\
	<h5>navigation</h5>\
	<div class='menu' id='menu'>\
	<ul>\
		    <li><a href=\""+dir+"index.html\">Oh, me</a>\
		    <li><a href=\""+dir+"publications.html\">Postal Incubi</a>\
		    <li><a href=\""+dir+"resume.html\">Sure, me</a>\
		    <li><a href=\""+dir+"projects.html\">Jet Corps</a></li>\
		    <li><a href=\""+dir+"gallery.html\">Regally</a>\
		    <li><a href=\""+dir+"software.html\">O, few arts</a>\
		    <li><a href=\""+dir+"links.html\">Slink</a>\
		    <li><a href=\"http://www.caip.rutgers.edu/vizlab.html\">Lab VIZ</a>\
   	</ul>\
   	</div>\
	</div>\
    ");
    window.document.close();
}


function ShowHeader(title, subtitle)
{
    window.document.write("\
	<table cellspacing=0 cellpadding = 5 class =\"mheader\" width=100%>\
		<tr>\
		<td align=left>\
		<span class=\"title\">\
		"+
		title+
		"\
		</span>\
		</td>\
		</tr>\
	</table>\
	<table>\
		<tr>\
		<td align=right>\
		<span class=\"subtitle\">\
		"+
		subtitle+
		"\
		</span>\
		</td>\
		</tr>\
	</table>\
	");
}

function getMe() {
                var rest = "rrea";
                window.document.open();
                window.document.write("Email cdco" + rest + " (at) caip.rutgers.edu <br>");
                window.document.close();
}

