function autoExpire1() {
  var goLiveMonth = "02"  // 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 = "2010"     // 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 = "2010"  // 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 style=font-size:11px><b>2010 Hong Kong International Fur & Fashion Fair</b></a>25 to 28 Feb 2010</div><div class=list_content><a href=http://www.hotelartfair.kr/ target=_blank style=font-size:11px><b>Asia Top Gallery Hotel Art Fair HK</b></a>26 to 28 Feb 2010</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 = "02"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "28"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2010"     // 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 = "08"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2010"  // 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.asiafja.com/exhibition/fairs.aspx?lang=0 target=_blank style=font-size:11px><b>Asia's Fashion Jewellery and Accessories Fair 2010 - March</b></a>3 to 6 Mar 2010</div><div class=list_content><a href=http://www.hktdc.com/hkjewelleryshow target=_blank style=font-size:11px><b>HKTDC Hong Kong International Jewellery Show 2010</b></a>5 to 9 Mar 2010</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 = "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 = "2010"     // 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 = "18"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2010"  // 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.cartes-asia.com target=_blank style=font-size:11px><b>Cartes in Asia</b></a>16 to 18 Mar 2010</div><div class=list_content><a href=http://www.bairdmaritime.com/index.php?option=com_content&view=article&id=1369&Itemid=197 target=_blank style=font-size:11px><b>China Maritime 2010</b></a>16 to 18 Mar 2010</div><div class=list_content><a href=http://www.messefrankfurt.com.hk/fair_homepage.aspx?fair_id=1&exhibition_id=1 target=_blank style=font-size:11px><b>Interstoff Asia Essential - Spring</b></a>17 to 19 Mar 2010</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 = "03"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "19"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2010"     // 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 = "22"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2010"  // 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://hkmusicfair.hktdc.com/intro.htm target=_blank style=font-size:11px><b>Hong Kong Music Fair</b></a>20 to 22 Mar 2010</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 = "03"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "19"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2010"     // 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 = "25"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2010"  // 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.hkfilmart.com/filmart target=_blank style=font-size:11px><b>Hong Kong International Film & TV Market (FILMART)</b></a>22 to 25 Mar 2010</div><div class=list_content><a href=http://www.eexpohk.com/luckydraw.htm target=_blank style=font-size:11px><b>Entertainment Expo Hong Kong</b></a>22 Mar to 18 Apr 2010</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)
  }
}
