var docURL=document.URL;
//A MousePos object contains fields x and y with the obvious denotations.
function PrintView() {
NavMenuPart1=document.getElementById("logotable");
ContentDIV=document.getElementById("content");
if(NavMenuPart1.style.display=="none"){NavMenuPart1.style.display="";ContentDIV.style.marginLeft="250px";}
else{NavMenuPart1.style.display="none";ContentDIV.style.marginLeft="10px";}
}
footertext ="<hr width=90% div align=right color=#98002E/>";
footertext +="<div style='text-align:right;color:#666666;font-size:x-small;font-family:Verdana, Arial, Helvetica, sans-serif'>";
footertext +="&copy; ";
todayDate=new Date();
//alert(todayDate);
footertext+= todayDate.getFullYear();
footertext+=" Kennesaw State University <BR>All Rights Reserved";
footertext+=".<br>Last modified: ";
var d = new Date();
if (d.toLocaleDateString) {
footertext2 = d.toLocaleDateString(document.lastModified);
}
else {
footertext2 = document.lastModified;
}
footertext+= footertext2;
footertext+=" UT<br>URL: ";
footertext+= document.URL;
footertext+="<br><a href=# onclick=JavaScript:PrintView();>Toggle View</a>";
footertext+="</div>";
document.write(footertext);