function loadDailyCapture(pathCode) {
  var p = new Date();
  var t = p.getDate();
  if (pathCode==2) {
    document.write("<a href=\"../daily/"+t+".html\">");
    document.write("<img src=\"../daily/"+t+"s.jpg\" width=\"180\" border=\"0\" hspace=\"5\" vspace=\"5\" alt=\"TV Capture of the day\"><br>");
    document.write("</a>");
  } else {
    document.write("<a href=\"daily/"+t+".html\">");
    document.write("<img src=\"daily/"+t+"s.jpg\" width=\"180\" border=\"0\" hspace=\"5\" vspace=\"5\" alt=\"TV Capture of the day\"><br>");
    document.write("</a>");
  }
}

function chkDay(ts) {
  var p = new Date();
  var t = p.getDate();
  if (t != ts) history.back(-1);
}

function chkBDay(bdt,bdm) {
  var p = new Date();
  var bt = p.getDate();
  var bm = p.getMonth();
  bm++;
  if ((bt == bdt)&&(bm == bdm)) {
    document.write("<img src=\"../4all/rose.jpg\" width=\"60\" height=\"60\" alt=\"rose\" align=\"left\">");
    document.write("<div style=\"color:#006400;\">HERZLICHEN GL&Uuml;CKWUNSCH ZUM GEBURTSTAG<br>HAPPY BIRTHDAY</div>");
  }
}
