window.onerror=errortrap;

function kd201(a, b) {
    document.write('<a hr' + 'ef="');document.write('contact.php?to='+a);
    document.write('" title="email">email');
    document.write('</'+'a>');
}

function showDate() {
var now = new Date();
var breakaway = new Date("Sept, 13, 1999");

// standard date extractions
var month = now.getMonth()+1;
var date = now.getDate();
var year = now.getYear();
if (year < 1000) year+=1900;
var monthname = new Array ("January","February","March","April","May","June","July","August","September","October","November","December" );
var html = date + " " + monthname[month-1] + " " + year + " - "; // write today's date

var days = (now-breakaway)/86400000;   //-number of milliseconds in a day
days = days + " ";   //-make the number a string
var decimal = days.indexOf(".");  //-find the decimal point (math.round is wrong after noon)
if (decimal != -1 ) {
days = days.substring(0,decimal);   //-if it's not integer, extract up to decimal point
}
html += days + " days since leaving Earth orbit<br>";
$('div#divDate').html(html);
}
function errortrap() {
  return true;
  }

