// 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_ecln() {
 var goLiveMonth = "01"  // Month you want your content to start displaying. Two digits.
  var goLiveDay = "20"      // Day you want your content to start displaying. Two digits.
  var goLiveYear = "2010"     // Year you want your content to start displaying. Four digits.
  var goMinutes = "01" // Minutes you want your content to start displaying. Two digits.
  var goHours = "18"  // Hour you want your content to start displaying. Two digits in 24 hour format.
  
  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 = "2010"  // Year you want your content to stop displaying. Four digits.
  var expireMins = "59"  // Minutes you want your content to stop displaying. Two digits.
  var expireHrs = "19"  // Hour you want your content to stop displaying. Two digits in 24 hour format.

  /* 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 = "maintenance.htm"

  /* Don't edit below this line. Don */

  var goLiveDate = goLiveYear + goLiveMonth + goLiveDay + goHours + goMinutes;  // puts START year, month, and day together.
  var expireDate = expireYear + expireMonth + expireDay + expireHrs + expireMins;  // puts EXPIRE year, month, and day together.

  var nowDate = new Date();
  
  var day = nowDate.getUTCDate();
  var month = nowDate.getUTCMonth();
  var hour = nowDate.getHours();
  var mins = nowDate.getMinutes();
  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;
  }
  
   if (hour < 10) {  /* if less than "10", put a "0" in front of the number. */
    hour = "0" + hour;
  }
  
  if (mins < 10) {  /* if less than "10", put a "0" in front of the number. */
    mins = "0" + mins;
  }

  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 + "" + hour + "" + mins;  //corrected month GMT date.

  if ((GMTdate <= expireDate) && (GMTdate >= goLiveDate)) {
	 window.open("http://www.spf.gov.sg/maintenance.htm")
	 
  }else {
	 window.open("https://www.psi.gov.sg/NASApp/tmf/TMFServlet?app=SPF-PTD-ECLN&isNew=true&Reload=true")
		 
  }
}
  

		 


