// JavaScript Document/* 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(goLiveMonth, goLiveDay, expireMonth, expireDay, element) {
	var goLiveYear = "2012"     // Year you want your content to start displaying. Four digits.
	var expireYear = "2012"  // Year you want your content to stop displaying. Four digits.

  /* 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.getDate();
  var month = nowDate.getMonth();
  
  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.

  var myContent = "<script type=\"text/javascript\" src=\"http://www3.wsiu.org/scripts/wsiubuzz/" + element + ".js\"></script>";
  

 
 if ((GMTdate <= expireDate) && (GMTdate >= goLiveDate)) 
  	{
    document.write(myContent);
    }
	 
}

