function ArtistReception(InputDate,ReceptionStart,ReceptionEnd) {

/* Convert the Input Date and Times */
  var ReceptionDate=dateFormat(InputDate,"dddd, mmmm dS, yyyy");
  var TempDate=dateFormat(InputDate,"yyyymmdd");
  
/* This is where you put your content. Make sure you escape any quotation marks with a backslash. Make sure you do not delete the opening and closing quotes. */
  var myContent = "<strong>Artist Reception on " +ReceptionDate+ " from "+ReceptionStart+" until "+ReceptionEnd+".</strong>"

/* Get the current date. */
  var nowDate = new Date();
  var day = nowDate.getUTCDate();
  var month = nowDate.getUTCMonth();
  var correctedMonth = month + 1;  //month - JavaScript starts at "0" for January, so we add "1"
 if (correctedMonth < 10) {  /* if less than "10", put a "0" in front of the number. */
    correctedMonth = "0" + correctedMonth;
  }
  if (day < 10) {  /* if less than "10", put a "0" in front of the number. */
    day = "0" + day;
  }
  var year = nowDate.getYear();  /* Get the year. Firefox and Netscape might use century bit, and two-digit year. */
  if (year < 1900) {
    year = year + 1900;  /*This is to make sure Netscape AND FireFox doesn't show the year as "107" for "2007." */
  }
  var GMTdate = year + ""+correctedMonth + "" + day;  //corrected month GMT date.

  if (GMTdate <= TempDate) {
    document.write(myContent)
  }
}