﻿function autoExpire1() {
  var goLiveMonth = "01"  // 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 = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "01"   // 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 = "2012"  // 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.bse.polyu.edu.hk/deptNews/event/2012/20120103_Conference.pdf target=_blank><b style=font-size:11px>The 2nd Asian-US-European Thermophysics Conference - Thermal Science for Sustainable World</b></a>2011年1月3日至6日</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 = "01"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "02"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "01"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "07"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2012"  // 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.ied.edu.hk/apll2012/ target=_blank><b style=font-size:11px>Global Conference on Disorders in Auditory Processing, Literacy, Language and Related Sciences</b></a>2011年1月4日至7日</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 = "12"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "30"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2011"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "01"   // 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 = "2012"  // 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.hktdc.com/fair/hkbabyfair-en/HKTDC-Hong-Kong-Baby-Products-Fair.html target=_blank><b style=font-size:11px>香港婴儿用品展</b></a>2011年1月9日至12日</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 = "12"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "30"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2011"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "01"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "12"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2012"  // 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.hktdc.com/fair/hklicensingshow-en/HKTDC-Hong-Kong-International-Licensing-Show.html target=_blank><b style=font-size:11px>香港国际授权展</b></a>2011年1月9日至11日</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 = "12"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "30"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2011"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "01"   // 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 = "2012"  // 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.hktdc.com/fair/hktoyfair-en/s/824-General_Information/HKTDC-Hong-Kong-Toys-and-Games-Fair/Fair-Details.html target=_blank><b style=font-size:11px>香港玩具展</b></a>2011年1月9日至12日</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 autoExpire6() {
  var goLiveMonth = "12"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "30"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2011"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "01"   // 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 = "2012"  // 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.hktdc.com/fair/hkstationeryfair-en/Hong-Kong-International-Stationery-Fair.html target=_blank><b style=font-size:11px>香港国际文具展</b></a>2011年1月9日至12日</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 autoExpire7() {
  var goLiveMonth = "01"  // 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 = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "01"   // 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 = "2012"  // 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.hktdc.com/fair/hkfashionweekfw-en/HKTDC-Hong-Kong-Fashion-Week-For-Fall-Winter.html target=_blank><b style=font-size:11px>香港时装节秋冬系列</b></a>2011年1月16日至19日</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 autoExpire8() {
  var goLiveMonth = "01"  // 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 = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "01"   // 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 = "2012"  // 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.hktdc.com/fair/worldboutiquehk-en/HKTDC-World-Boutique-Hong-Kong.html target=_blank><b style=font-size:11px>香港国际时尚荟萃</b></a>2011年1月16日至19日</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 autoExpire9() {
  var goLiveMonth = "01"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "14"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "01"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "17"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2012"  // 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.asianfinancialforum.com/en/index_en.htm target=_blank><b style=font-size:11px>亚洲金融论坛</b></a>2011年1月16日至17日</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 autoExpire10() {
  var goLiveMonth = "01"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "31"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "02"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "05"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2012"  // 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.brainandmindexpo.com/ target=_blank><b style=font-size:11px>脑科学与思维教育博览</b></a>2011年2月2日至5日</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 autoExpire11() {
  var goLiveMonth = "02"  // 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 = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "02"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "21"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2012"  // 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.hktdc.com/fair/hkjewellery-en/HKTDC-Hong-Kong-International-Jewellery-Show.html target=_blank><b style=font-size:11px>香港国际珠宝展</b></a>2011年2月16日至20日</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 autoExpire12() {
  var goLiveMonth = "02"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "08"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "02"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "22"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2012"  // 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://exhibitions.jewellerynetasia.com/3FJ/ target=_blank><b style=font-size:11px>三月亚洲时尚首饰及配饰展</b></a>2011年2月18日至21日</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 autoExpire13() {
  var goLiveMonth = "02"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "21"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "02"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "25"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2012"  // 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.asiapacifichematology.org/ target=_blank><b style=font-size:11px>3rd International Hematologic Malignancies Conference &#34;Bridging the Gap 2012&#34;</b></a>2011年2月23日至25日</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 autoExpire14() {
  var goLiveMonth = "02"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "14"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "02"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "27"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2012"  // 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://hotelartfair.kr/wp/?page_id=37 target=_blank><b style=font-size:11px>亚洲顶级画廊酒店艺术画展</b></a>2011年2月24日至26日</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 autoExpire15() {
  var goLiveMonth = "02"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "22"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "02"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "26"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2012"  // 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.hkiot.org/2012otc/ target=_blank><b style=font-size:11px>2012 International Occupational Therapy Conference</b></a>2011年2月24日至26日</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 autoExpire16() {
  var goLiveMonth = "02"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "22"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "02"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "26"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2012"  // 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.icc-hongkong.com/ target=_blank><b style=font-size:11px>International Congress of Cardiology (ICC) 2012</b></a>2011年2月24日至26日</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 autoExpire17() {
  var goLiveMonth = "02"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "15"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "02"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "29"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2012"  // 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.hkff.org/en/events/fair.do?method=listing&mappingName=FocusEvents_FF target=_blank><b style=font-size:11px>香港国际毛皮时装展览会</b></a>2011年2月25日至28日</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 autoExpire18() {
  var goLiveMonth = "03"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "03"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "03"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "16"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2012"  // 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.tocevents-asia.com/ target=_blank><b style=font-size:11px>TOC集装箱供应链亚洲展2012 </b></a>2011年3月13日至15日</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 autoExpire19() {
  var goLiveMonth = "03"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "04"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "03"   // Month you want your content to stop displaying. Two digits.
  var expireDay = "17"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2012"  // 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.interstoff-asia.com target=_blank><b style=font-size:11px>香港国际春季成衣及时装材料展</b></a>2011年3月14日至16日</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 autoExpire20() {
  var goLiveMonth = "03"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "09"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2012"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "03"   // 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 = "2012"  // 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.hktdc.com/fair/hkfilmart-en target=_blank><b style=font-size:11px>香港国际影视展</b></a>2011年3月19日至22日</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)
  }
}
