function expired(goLiveDate, expireDate)
{
var expireYear = expireDate.substring(0,4)
var expireMonth = expireDate.slice(4,-2)
var expireDay = expireDate.slice(6)
var liveYear = goLiveDate.substring(0,4)
var liveMonth = goLiveDate.slice(4,-2)
var liveDay = goLiveDate.slice(6)
var nowDate = new Date();
var day = nowDate.getDate();
var month = nowDate.getMonth();
var month1 = month + 1;
  if (month1 < 10) {month1 = "0" + month1;}
  if (day < 10){day = "0" + day;}
var year = nowDate.getYear();
var GMTdate = year + "" + month1 + "" + day
if ((GMTdate <= expireDate) && (GMTdate >= goLiveDate)) 	{return 1;}
}
