function autoExpire1() {
  var goLiveMonth = "08"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "17"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2009"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "10"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "30"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2009"  // Year you want your content to stop displaying. Four digits.

  /* 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 = "<div class=list_content><a href=http://sportssource-asia.hktdc.com target=_blank style=font-size:11px><b>Sports Source Asia 2009</b></a>28 to 30 Oct 2009</div><div class=list_content><a href=http://www.kenfair.com target=_blank style=font-size:11px><b>Gifts, Decor & Home</b></a>28 to 30 Oct 2009</div><div class=list_content><a href=http://ecoexpoasia.hktdc.com target=_blank style=font-size:11px><b>Eco Expo Asia 2009 - International Trade Fair on Environmental Protection</b></a>28 to 31 Oct 2009</div>"

  /* Don't edit below this line. Don */

  var goLiveDate = goLiveYear + goLiveMonth + goLiveDay;  // puts START year, month, and day together.
  var expireDate = expireYear + expireMonth + expireDay;  // puts EXPIRE year, month, and day together.

  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 <= expireDate) && (GMTdate >= goLiveDate)) {
    document.write(myContent)
  }
}



function autoExpire2() {
  var goLiveMonth = "11"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "01"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2009"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "11"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "06"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2009"  // Year you want your content to stop displaying. Four digits.

  /* 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 = "<div class=list_content><a href=http://hkmedicalfair.hktdc.com/ target=_blank style=font-size:11px><b>HKTDC Hong Kong International Medical Devices and Supplies Fair 2009</b></a>04 to 06 Nov 2009</div><div class=list_content><a href=http://hkwinefair.hktdc.com/ target=_blank style=font-size:11px><b>HKTDC Hong Kong International Wine & Spirits Fair 2009</b></a>04 to 06 Nov 2009</div><div class=list_content><a href=http://hkopticalfair.hktdc.com/ target=_blank style=font-size:11px><b>HKTDC Hong Kong Optical Fair</b></a>04 to 06 Nov 2009</div>"

  /* Don't edit below this line. Don */

  var goLiveDate = goLiveYear + goLiveMonth + goLiveDay;  // puts START year, month, and day together.
  var expireDate = expireYear + expireMonth + expireDay;  // puts EXPIRE year, month, and day together.

  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 <= expireDate) && (GMTdate >= goLiveDate)) {
    document.write(myContent)
  }
}

function autoExpire3() {
  var goLiveMonth = "11"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "06"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2009"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "11"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "13"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2009"  // Year you want your content to stop displaying. Four digits.

  /* 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 = "<div class=list_content><a href=http://www.cosmoprof-asia.com/Visitors/tabid/585/language/en-US/Default.aspx target=_blank style=font-size:11px><b>Cosmoprof Asia 2009</b></a>11 to 13 Nov 2009</div>"

  /* Don't edit below this line. Don */

  var goLiveDate = goLiveYear + goLiveMonth + goLiveDay;  // puts START year, month, and day together.
  var expireDate = expireYear + expireMonth + expireDay;  // puts EXPIRE year, month, and day together.

  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 <= expireDate) && (GMTdate >= goLiveDate)) {
    document.write(myContent)
  }
}

function autoExpire4() {
  var goLiveMonth = "11"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "06"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2009"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "11"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "20"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2009"  // Year you want your content to stop displaying. Four digits.

  /* 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 = "<div class=list_content><a href=http://www.mipimasia.com/ target=_blank style=font-size:11px><b>MIPIM Asia 2009</b></a>18 to 20 Nov 2009</div>"

  /* Don't edit below this line. Don */

  var goLiveDate = goLiveYear + goLiveMonth + goLiveDay;  // puts START year, month, and day together.
  var expireDate = expireYear + expireMonth + expireDay;  // puts EXPIRE year, month, and day together.

  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 <= expireDate) && (GMTdate >= goLiveDate)) {
    document.write(myContent)
  }
}

function autoExpire5() {
  var goLiveMonth = "08"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "17"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2009"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "11"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "23"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2009"  // Year you want your content to stop displaying. Four digits.

  /* 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 = "<div class=list_content><a href=http://www.lcsd.gov.hk/CE/Museum/Arts/english/exhibitions/exhibitions01_jul09_01.html target=_blank style=font-size:11px><b>The Prosperous Cities: A Selection of Paintings from the Liaoning Provincial Museum</b></a>25 Sep to 22 Nov 2009</div>"

  /* Don't edit below this line. Don */

  var goLiveDate = goLiveYear + goLiveMonth + goLiveDay;  // puts START year, month, and day together.
  var expireDate = expireYear + expireMonth + expireDay;  // puts EXPIRE year, month, and day together.

  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 <= expireDate) && (GMTdate >= goLiveDate)) {
    document.write(myContent)
  }
}
