/* script.js */

function navbar() {
  var str = "<table border=0 cellspacing=0 cellpadding=0 width=\"100%\" background=\"images/nav_background.gif\">";
  str += "  <tr>";
  str += "    <td><center>";
  str += "      <table class=\"inner\" border=0 cellspacing=0 cellpadding=0 width=\"100%\">";
  str += "        <tr>";
  str += "          <td class=\"inner\" width=\"14%\"><a class=\"navbar\" href=\"general.html\">General<BR>Description</a></td>";
  str += "          <td class=\"inner\" width=\"14%\"><a class=\"navbar\" href=\"prog-objective.html\">Philosophy</a></td>";
  str += "          <td class=\"inner\" width=\"14%\"><a class=\"navbar\" href=\"mission.html\">Mission</a></td>";
  str += "          <td class=\"inner\"><img border=0 width=131 height=129 src=\"images/nav_logo.gif\"></td>";
  str += "          <td class=\"inner\" width=\"14%\"><a class=\"navbar\" href=\"curriculum.html\">Curriculum</a></td>";
  str += "          <td class=\"inner\" width=\"14%\"><a class=\"navbar\" href=\"contactus.html\">Contact Us</a></td>";
  str += "          <td class=\"inner\" width=\"14%\"><a class=\"navbar\" href=\"index.html\">Home</a></td>";
  str += "        </tr>";
  str += "      </table>";
  str += "    </center></td>";
  str += "  </tr>";
  str += "</table>";
  return str;
}

function copyright() {
  var str = "<p style='font-size: xx-small; text-align: center;'>Copyright © " + new Date().getFullYear() + " SEHC School for Nurse Anesthetists, Inc.<br>";
  str += "ALL RIGHTS RESERVED.</p>";
  return str;
}

function doNothing() {}

var appl, ysu, ste;

function applWindow(){
  if (appl) {
    if (!appl.closed) appl.close();
  }
  appl = window.open("appl-letter.html", "appLetter");
}
function ysuWindow()
{
    if (ysu) {
      if (!ysu.closed) ysu.close();
  }
  ysu = window.open("http://bchhs.ysu.edu", "ysuletter");
}
function steWindow()
{   
    if (ste) {
      if (!ste.closed) ste.close();
  }
  ste = window.open("http://www.hmpartners.org", "steletter");
}
