<!--

// 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();



function openS(theURL) {
  window.open(theURL,'','toolbar=no,location=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=960,height=720');
}
//-->