function printDate() {
   var now = new Date();
   var daynames = new Array("So", "Mo", "Di", "Mi", "Do", "Fr", "Sa");
   var day = now.getDay();
   document.write(daynames[day]);
   document.write(" | ");
   var date = now.getDate();
   if (date < 10)
      document.write("0");
   document.write(date);
   document.write(".");
   var month = now.getMonth()+1;
   if (month < 10)
      document.write("0");
   document.write(month);
   document.write(".");
   document.write(now.getFullYear());
   return;
}


function globalPopup(url, wd, ht, options) {
   if (wd == null)
      wd = "400";
   if (ht == null)
      ht = "300";
   if (!options)
      options = "resizable=yes,status=yes,scrollbars=yes";
   options += ",width=" + wd + ",height=" + ht;
   return self.open(url, "popup", options);
}


function vc(name) {
   if (!name)
      return;
   var url = "http://my.orf.at/" + escape(name);
   popup(url, 440, 490);
   return;
}

