<!--
// This JavaScript creates the Header & Footer for the FLMC site.
// The header is passed the name of the page to be displayed at 
// the top of the page. The footer takes the name and url of the
// home page for our site.

function header(pageName, macroName, macroURL)
{
  var topImage = "http://www.marquette.edu/img/logo.gif";
  var muHome = "http://www.marquette.edu/index.html"
  

// write the proper header for each page
  
  document.write("<center><table BORDER=\"0\" WIDTH=\"602\">");
  document.write("<tr><td><p><font SIZE=\"+1\"><b><a NAME=\"top\"></a></b></font>");
  document.write("<table BORDER=\"0\" BGCOLOR=\"#08185A\" CELLSPACING=\"0\" ");
  document.write("CELLPADDING=\"3\" WIDTH=\"100%\">");
  document.write("<tr><td WIDTH=\"500\"><p>&nbsp;<a HREF=\"" + muHome + "\">");
  document.write("<font SIZE=\"-1\" FACE=\"sans-serif\" COLOR=\"#F7EFD6\"><b>");
  document.write("Marquette Home</b></font></a><font SIZE=\"-1\"");
  document.write(" FACE=\"sans-serif\" COLOR=\"#F7EFD6\"><b> | </b>");
  document.write("</font><a HREF=\"" + macroURL + "\"><font SIZE=\"-1\" FACE=\"sans-serif\"");
  document.write(" COLOR=\"#F7EFD6\"><b>" + macroName + "</b></font></a>");
  document.write("</td><td ALIGN=\"right\" WIDTH=\"102\">");
  document.write("<p><a HREF=\"/find/\"><font SIZE=\"-1\" FACE=\"sans-serif\" ");
  document.write("COLOR=\"#F7EFD6\">");
  document.write("<b>FIND</b></font></a></td></tr></table>");
  document.write("<br><font SIZE=\"+1\"><b><table BORDER=\"0\" WIDTH=\"602\">");
  document.write("<tr><td WIDTH=\"401\"><h2>" + pageName + "</h2></td>");
  document.write("<td><p><a HREF=\"" + muHome + "\"><img SRC=\"" + topImage + "\"");
  document.write(" ALT=\"Go to Marquette Home\" WIDTH=\"114\" HEIGHT=\"67\"");
  document.write(" BORDER=\"0\" ALIGN=\"right\"></a>");
  document.write("</td></tr></table>");
  
  return;
}

// This script writes the footer for each page
// including links to the parent page, copyright information
// and date of last update.
function footer(parentName, parentURL, cpyRightDate, lastUpdate)
 {
  var muHome = "http://www.marquette.edu/index.html"
  
  document.write("<p><br><font SIZE=\"-1\" FACE=\"sans-serif\"><b>&lt;</b></font>");
  document.write(" <a HREF=\""+ parentURL +"\"><font SIZE=\"-1\" FACE=\"sans-serif\">");
  document.write("<b>" + parentName + "</b></font></a>");
  document.write("<hr SIZE=\"1\" NOSHADE>");
  document.write("<font SIZE=\"-1\" FACE=\"sans-serif\" COLOR=\"#666666\">");
  document.write("<b>&copy;" + cpyRightDate + "</b></font>");
  document.write(" <a HREF=\"" + muHome +"\"><font SIZE=\"-1\"");
  document.write(" FACE=\"sans-serif\" COLOR=\"#666666\">");
  document.write("<b>Marquette University</b></font></a>");
  document.write("<font SIZE=\"-1\" FACE=\"sans-serif\" COLOR=\"#666666\"><b>");
  document.write(" -- Last Update: " + lastUpdate + "</b></font>");
  document.write("</td>");
  document.write("</tr>");
  document.write("</table>");
  document.write("</center>");
  
  return;
}

-->