// all JavaScript code is (c) by D. Sadovskii (c) 2002
// hopefully this would fend off some of the web spiders and bots
function email(){
 var u = "sadovski";
 var d = "univ-littoral";
 var c = "fr";
 return u + '@' + d + '.' + c;
}

function emailto(key){
  var r = '<a HREF=\"mailto:'+ email() + '?subject=Contact\">' + key + '(' + email() + ')' + "</a>";
  document.write(r);
}

function lastupd(key){
  if (document.lastModified) {
    var r = '<i>(' + key + document.lastModified + ')</i>';
    document.write(r);
  }
}

function DScrght(){
  var yr;
  if (document.lastModified)
    yr = new Date(document.lastModified).getFullYear();
//    yr = Date.parse(document.lastModified);
  else yr = '';
  return '&copy;'+yr+' Sadovski&iacute;';
}
