function autoExpire() {
  var goLiveMonth = "04"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "24"      // 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 = "04"   // 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 = "2011"  // 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 = "This text will display, <strong>beginning and ending</strong> on the dates you have set."

  /* 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 startDay = nowDate.getUTCDate();
  var startMonth = nowDate.getUTCMonth();
  var correctedMonth = startMonth + 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 (startDay < 10) {  /* if less than "10", put a "0" in front of the number. */
    startDay = "0" + startDay;
  }

  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 + "" + startDay;  //corrected month GMT date.

  if ((GMTdate <= expireDate) && (GMTdate >= goLiveDate)) {
    //document.write(myContent)
	document.location='/countdown_redirect.htm';
	//alert("Countdown over");
  }
}