// WU CIS Javascripts

// Main Functions

function headInfo(){
	document.write("<div class=\"All\"><div class=\"Utility\">");
	siteWideNav();
/*
	document.write("<hr />");
*/
	fileInfo();
	document.write("</div><div class=\"Main\"><div class=\"Body\">");
}
function footInfo(){
	document.write("</div>"); // close .Body div
	document.write("<div class=\"Foot\">"); // Open .Foot div
	siteWideNav();
	wuInformation();
	bottom();
	document.write("</div>"); // close .Foot div
	document.write("</div>"); // close .Main div
	document.write("</div>"); // close .All div
}
function contextInfo(){
}

// Called (Subordinate) Functions

function siteWideNav(){
document.write("<p class=\"MainLinks\"><a href=\"index.html\">Home</a></p><ul>" + 
		"<li><a href=\"faculty.html\">Faculty &amp; Staff</a></li> " + 
		"<li><a href=\"overview.html\">Department Overview</a></li> " + 
		"<li><a href=\"degrees.html\">Degrees</a></li> " + 
		"<li><a href=\"scholarships.html\">Scholarships</a></li> " + 
		"<li><a href=\"internships.html\">Internships &amp; Coops</a></li> " + 
		"<li><a href=\"contact.html\">Contact Us</a></li> " + 
		"</ul>");
}
function bottom(){
document.write("<p class=\"Links\">Return to the <a href=\"#\">top</a> of " +
		"the page by striking &ldquo;home&rdquo; on your keyboard.</p>");
}
function fileInfo(){
/*
document.write("<p class=\"ContextualHelp\">Info Center:</p><p class=\"FileInfo\">Permalink to this <a title=\"" +
		document.location + "\" href=\"" + document.location + "\">page</a>.<br />This page was last updated: " + 
		document.lastModified + ".</p>");
*/
}
function wuInformation(){
document.write("<div class=\"wu\"><p class=\"Links\">[<a href=\"http://www.washburn.edu\" " + 
		"title=\"WU Home\">WU Home</a>] [<a href=\"http://www.washburn.edu/" + 
		"washburn/gen/washburn_generated_pages/People_p4.html\" " + 
		"title=\"People\">People</a>] [<a href=\"http://www.washburn.edu/" + 
		"washburn/gen/washburn_generated_pages/Calendars_p51.html\" " + 
		"title=\"Calendars\">Calendars</a>] [<a href=\"http://www." + 
		"washburn.edu/washburn/gen/washburn_generated_pages/site_map.html\" " + 
		"title=\"SiteMap\">Site Map</a>]</p>" + 
		"<p class=\"Copyright Address\">" + 
		"<span class=\"AddressName\">© 2000-2006 Washburn University" + 
		"</span> <span class=\"AddressStreet\">1700 SW College Ave</span>, " + 
		"<span class=\"AddressCityStateZip\">Topeka, Kansas 66621</span> " + 
		"<span class=\"AddressPhoneNumber\">785.670.1010</span></p>" + 
		"<p class=\"Contact\">Contact <a href=\"mailto:webmaster" + 
		"@washburn.edu\">webmaster@washburn.edu</a> with questions or " + 
		"comments.</p>" + 
		"<p class=\"Meta\">[<a href=\"http://www.washburn.edu/" + 
		"accessibility\">Accessibility</a>] [<a href=\"http://" + 
		"www.washburn.edu/washburn/gen/washburn_generated_pages/" + 
		"Policies_p55.html\">Important Policies</a>]</p></div>");
}
function validator(){
document.write("<p class=\"ContextualHelp\">If this page doesn&rsquo;t " +
		"validate as at least <a href=\"http://validator.w3.org/" +
		"check?uri=referer\"><acronym title=\"eXtensible HyperText " +
		"Markup Language\">xhtml</acronym> 1.0 transitional</a>, please " +
		"<a href=\"mailto:david@socklint.com\">let us know</a>.</p>");
}

