<!--

// change the sub-color of text according to the week day
function changeStyleSheet() {
var mydate=new Date();
var day=mydate.getDay();
  var i, a, main;
  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
      a.disabled = true;
      if(a.getAttribute("title") == day) a.disabled = false;
    }
  }
}
changeStyleSheet();

//for the pull-down menus in some archives
function MM_jumpMenu(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

//for small pop-up windows (CVs, events and publications infos, etc.)
function openS(theURL) {
  window.open(theURL,'','scrollbars=yes,resizable=yes,width=384,height=576');
}

//for medium pop-up windows (parts of old website)
function openM(theURL) {
  window.open(theURL,'','scrollbars=yes,resizable=yes,width=500,height=750');
}

//for large pop-up windows (designed website, other external websites)
function openL(theURL) {
  window.open(theURL,'','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=960,height=720');
}

//to open publications order form
function orderform() { //v2.0
  window.open('../0_4_1_productions/order_form.html','','scrollbars=yes,resizable=yes,width=590,height=880');
}

//-->