dat   = new Date();
hour  = dat.getHours();
datum = dat.getDate();
day   = dat.getDay();
dag   = WelkeDag(day);
function WelkeDag(day) {
  if (day==0) { return "Zondag";    } else
  if (day==1) { return "Maandag";   } else
  if (day==2) { return "Dinsdag";   } else
  if (day==3) { return "Woensdag";  } else
  if (day==4) { return "Donderdag"; } else
  if (day==5) { return "Vrijdag";   } else
  if (day==6) { return "Zaterdag";  }
  }
  if ((dag =="Zondag")) {
  document.write('<a onfocus="this.blur()" href="http://www.trancezone.be" target="_self"><img src="images/logo_weekend.jpg" BORDER="0" WIDTH="750" HEIGHT="60" ALT=""></a>');
  }
  else
  if ((dag =="Maandag")) {
  document.write('<a onfocus="this.blur()" href="http://www.trancezone.be" target="_self"><img src="images/logo_week.jpg" BORDER="0" WIDTH="750" HEIGHT="60" ALT=""></a>');
  }
  else
  if ((dag =="Dinsdag")) {
  document.write('<a onfocus="this.blur()" href="http://www.trancezone.be" target="_self"><img src="images/logo_week.jpg" BORDER="0" WIDTH="750" HEIGHT="60" ALT=""></a>');
  }
  else
  if ((dag =="Woensdag")) {
  document.write('<a onfocus="this.blur()" href="http://www.trancezone.be" target="_self"><img src="images/logo_week.jpg" BORDER="0" WIDTH="750" HEIGHT="60" ALT=""></a>');
  }
  else
  if ((dag =="Donderdag")) {
  document.write('<a onfocus="this.blur()" href="http://www.trancezone.be" target="_self"><img src="images/logo_week.jpg" BORDER="0" WIDTH="750" HEIGHT="60" ALT=""></a>');
  }
  else
  if ((dag =="Vrijdag")) {
  document.write('<a onfocus="this.blur()" href="http://www.trancezone.be" target="_self"><img src="images/logo_weekend.jpg" BORDER="0" WIDTH="750" HEIGHT="60" ALT=""></a>');
  }
  else
  if ((dag =="Zaterdag")) {
  document.write('<a onfocus="this.blur()" href="http://www.trancezone.be" target="_self"><img src="images/logo_weekend.jpg" BORDER="0" WIDTH="750" HEIGHT="60" ALT=""></a>');
  }
  
  
