
suitClass.prototype.writeDate = function(strZone) { // version 1.0

  var date, d, day, m, month, yy, year;

  if (!strZone) strZone = "us";

  date = new Date();
  d  = date.getDate();
  day = (d < 10) ? '0' + d : d;
  m = date.getMonth() + 1;
  month = (m < 10) ? '0' + m : m;
  yy = date.getYear();
  year = (yy < 1000) ? yy + 1900 : yy;
  
  if (strZone == "us") document.write(month + "/" + day + "/" + year);
  else if (strZone == "euro") document.write(day + "/" + month + "/" + year);
  else return;
}
