// JavaScript Document
if (readCookie("print")!="true"){ 
 if ((navigator.appName=="Netscape")&&(navigator.appVersion.charAt(0)=="4")) {
		document.write("<table id='footbar' width='100%' border=0 cellpadding=0 cellspacing=0>");
		document.write("<tr bgcolor='#C26C29' height=2><td colspan='3'><img align=right src='http://www.kzoo.edu/templates/images/c26c29.gif' height=1px width=1 border=0></td> </tr>");
		document.write("<tr height=15>");
		document.write("<td width='155' bgcolor='#9D948A' align='center'><a href=mailto:web@kzoo.edu><font size=1 color='#FFFFFF'>web@kzoo.edu</font></a></td>");
		document.write("<td colspan=2 bgcolor='#000000'><img align=left src='http://www.kzoo.edu/templates/images/spacer.gif' height='15px' width='1' border='0'>&nbsp;");
		document.write("</td>");
		document.write(" </tr>");
		document.write("<tr><td colspan=3 align=center><img src='http://www.kzoo.edu/images/KC175thLogo2c2007.gif' align=middle vspace=5></td></tr>");
		document.write("</table><center>");
		}
 else{
	if(!contact_email){
		var contact_email="web@kzoo.edu";
		}
		document.write("</DIV>")
		
		document.write("<table id='footbar' width='100%' border=0 cellpadding=0 cellspacing=0>");
		document.write("<tr height=2 bgcolor='#C26C29'>");
		document.write("<td colspan=3></td>");
		document.write("</tr>");
		document.write("<tr height=15>");
		document.write("<td width=155 class=contactcell>");
		document.write("<a href=mailto:");
		document.write(contact_email); 
		document.write(">");
		contact_email=contact_email.replace ("@","[at]");
		document.write(contact_email);
		document.write("</a></td>");
		document.write("<td colspan=2  class=mainnav><img align=left src='http://www.kzoo.edu/templates/images/spacer.gif' height='15px' width='1' border='0'>&nbsp;");
		document.write("</td></tr>");
 		document.write("<tr><td colspan=3 align=center><img src='http://www.kzoo.edu/images/KC175thLogo2c2007.gif' align=middle vspace=5></td></tr></table></DIV>");
 }
}
else {
	writeCookie("print","false","")
	//print();
	//self.close();
}
function readCookie(name)
{
  var cookieValue = "";
  var search = name + "=";
  if(document.cookie.length > 0)
  { 
    offset = document.cookie.indexOf(search);
    if (offset != -1)
    { 
      offset += search.length;
      end = document.cookie.indexOf(";", offset);
      if (end == -1) end = document.cookie.length;
      cookieValue = unescape(document.cookie.substring(offset, end))
    }
  }
  return cookieValue;
}
function writeCookie(name, value, hours)
{
  var expire = "";
  if(hours != null)
  {
    expire = new Date((new Date()).getTime() + hours * 3600000);
    expire = "; expires=" + expire.toGMTString();
  }
  document.cookie = name + "=" + escape(value) + expire;
}