function getWindowHeight() {
	var windowHeight=0;
	if (typeof(window.innerHeight)=='number') {
		windowHeight=window.innerHeight;
	}
	else {
		if (document.documentElement&&
				document.documentElement.clientHeight) {
			windowHeight=
				document.documentElement.clientHeight;
		}
		else {
			if (document.body&&document.body.clientHeight) {
				windowHeight=document.body.clientHeight;
			}
		}
	}
	return windowHeight;
}

function setFooter() {
	if (document.getElementById) {
		var windowHeight=getWindowHeight();
		if (windowHeight>0) {
			var contentHeight=
				document.getElementById('container').offsetHeight;
			var footerElement=
				document.getElementById('footer');
			var footerHeight=footerElement.offsetHeight;
			if (windowHeight-(contentHeight+footerHeight)>=0) {
				footerElement.style.position='relative';
				footerElement.style.top=(windowHeight-
						(contentHeight+footerHeight))+'px';
			}
			else {
				footerElement.style.position='static';
			}
		}
	}
}

window.onload = function() {
	setFooter();
};
window.onresize = function() {
	setFooter();
};



document.write("<div class=\"headerzone\" style=\"width: 944; height: 142\">");
document.write("    <div class=\"logozone\" align=\"center\" style=\"width: 951; height: 121\">");
document.write("<img src=\"/images/Site_img/logo_sm.jpg\" alt align=\"right\" border=\"0\" height=\"66\" width=\"70\" />");
document.write("<font color=\"#AAC8FF\" size=\"5\" align=\"center\"><strong></strong></font>");
document.write("      <font color=\"#185FA1\" size=\"7\" face=\"Book Antiqua\"><strong><a href=\"/index.html\" style=\"text-decoration: none; color: #185FA1;\">Maryvale Academy of Ottawa</a></strong></font> <br>");
document.write("      <font color=\"#C0C0C0\">");
document.write("      <font face=\"StoneSerif SAIN SmBd v.1\" style=\"font-size: 10pt; font-weight:700\">");
document.write("<em>Discipulos Christi Facere!</em><i> Making Disciples for Christ!</i></font><font face=\"StoneSerif SAIN SmBd v.1\">&nbsp;");
document.write("      </font></font>&nbsp;");
document.write("    </div>");
document.write("&nbsp;<div class=\"clear\">");
document.write("    </div>");
document.write("  </div>");
document.write("  <div class=\"mainmenu\">");
document.write("    <ul>");
document.write("      <li><a href=\"/aboutus.html\">About Us</a></li>");
document.write("      <li><a href=\"/education.html\">Education</a></li>");
document.write("      <li><a href=\"/admissions.html\">Admissions</a></li>");
document.write("      <li><a href=\"/donations.html\">Donations</a></li>");
//document.write("      <li><a href=\"/members.html\">Members Site</a></li>");
document.write("      <li><a href=\"/life_at_maryvale.html\">Life at Maryvale</a></li>");
//document.write("      <li><a href=\"/links.html\">Links</a></li>");
document.write("      <li class=\"last\"><a href=\"/contact.html\">Contact Us</a></li>");
document.write("    </ul>");
document.write("    <div class=\"clear\">");
document.write("    </div>");
document.write("  </div>");
document.write("  <div class=\"clear\">");
document.write("  </div>");

