/*<!-- Paste this code into an external JavaScript file named: autoExpire.js  -->

 This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Don Demrow :: http://www.euro-innova.com
 */

 /*Note that we are setting all the dates and date parts to strings to do our comparisons.*/

function autoExpire() {
  var goLiveMonth = "09"  // 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 = "2010"     // 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 = "18"     // Day you want your content to stop displaying. Two digits.
  var expireYear = "2010"  // Year you want your content to stop displaying. Four digits.<font color=red size=5>WTC Roden</font><br>

  /* 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 = "<p align=center><font color=orange size=2><i><b>Zondag 17 oktober 2010<br>BikeLife Veldtoertocht <br>Ronostrand te EEN</font><br><a href='toc-bikelife.htm'><font color=red size=2>Lees meer ....</a></b></i></font><br>"

 /*<font color=white>Lees meer ....</font></a><br>"<a href='toc-crocus.htm'>Lees meer ....</a>
 <font color=yellow size=2>Tevens opgave tellerstanden voor de Toercompetitie.<br> <a href = toc-toercompins.htm ><font color=red> Klik hier </font> </a> voor meer informatie </font>*/

  /* 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 autoExpire1() {
  var goLiveMonth = "09"  // 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 = "2010"     // Year you want your content to start displaying. Four digits.

  var expireMonth = "09"   // 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 = "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 = "<p align=center><font color=orange size=2><i><b>5e Zondagsrit<br>Alleen voor clubleden<br>Zondag 12 september 2010</font></b></i>"


  /* 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 = "09"  // 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 = "2010"     // 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 = "03"     // 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 = "<p align=center><font color=orange size=2><i><b> Zaterdag 2 oktober<br>Afsluittocht Toeren<br>Alleen voor clubleden</b></font><br><a href='toc-afsluit08.htm'><font color=red size=2>Lees meer ....</font></a>"

  /* 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 = "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 = "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 = "04"     // 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 = "<p align=center><font color=orange size=2><i><b>Let op!! <br> Algemen Ledenvergadering<br>Donderdag 4 maart 2010<br> In HCR Onder de Linden"

  /* 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)
  }
}


