// JavaScript functions of the M.I.T. SA website
// Copyright 2005, M.I.T. SA, Lausanne, Switzerland


// Global Variables

var nav;
if(navigator.appName=="Netscape") {
  if(navigator.userAgent.indexOf("Opera")!=-1) {
    nav = "other";
  }
  else {
    nav = "ns";
  }
}
else {
  nav = "ie";
}


// Writes the footer

function writeFooter() {
//document.write("&nbsp;");
document.write("&copy; 2005 Micro Informatique & Technologies SA, All Rights Reserved");
}
