// JavaScript Document
// this file is used to produce the standard bottom part of the COS pages
// May 2001, K. Goehring

var bottom_style;
bottom_style = "<style>\n";
bottom_style += "#bottom  { color:blue; text-decoration:plain;}\n";
bottom_style += "</style>\n";
document.write(bottom_style);

var bottom_msg ="<center><br><span id=\"plain\">\n";
bottom_msg += "<a href=\"http://www.siskiyous.edu/prospective.htm\">Prospective Students</a> ~ ";
bottom_msg += "<a href=\"http://www.siskiyous.edu/current.htm\">Current Students</a> ~ ";
bottom_msg += "<a href=\"http://www.siskiyous.edu/facultyandstaff.htm\">Faculty and Staff</a> ~ ";
bottom_msg += "<a href=\"http://www.siskiyous.edu/alumni.htm\">Alumni and Community</a> ";
bottom_msg += "<br>";
document.write(bottom_msg);

bottom_msg = "<br>";
bottom_msg += "<a href=\"http://www.siskiyous.edu/\">COS Home</a> ~ ";
bottom_msg += "<a href=\"http://www.siskiyous.edu/siteindex.htm\">Site Index</a> ~ ";
bottom_msg += "<a href=javascript:window.history.back();>Back</a>";
bottom_msg += "</center></span>\n";
document.write(bottom_msg);

var last = document.lastModified;
var lastmod = last.substring(0,last.length-8);

document.write("Last Modified ");
document.write(lastmod);