<!-- Hide from older browsers.

<!-- begin script
//smilesbywire.com
function MakeArray(n) {
	this.length = n
	return this
}

monthNames = new MakeArray(12)
monthNames[1] = "January"
monthNames[2] = "February"
monthNames[3] = "March"
monthNames[4] = "April"
monthNames[5] = "May"
monthNames[6] = "June"
monthNames[7] = "July"
monthNames[8] = "August"
monthNames[9] = "September"
monthNames[10] = "October"
monthNames[11] = "November"
monthNames[12] = "December"

dayNames = new MakeArray(7)
dayNames[1] = "Sunday"
dayNames[2] = "Monday"
dayNames[3] = "Tuesday"
dayNames[4] = "Wednesday"
dayNames[5] = "Thursday"
dayNames[6] = "Friday"
dayNames[7] = "Saturday"


	
var today = new Date();
var todayInMS = today.getTime();
//var nextWeekInMS =  todayInMS - (60*60*24*14*1000); //non-holiday
var nextWeekInMS =  todayInMS - (60*60*24*15*1000);  //holiday
var calresult =  new Date(nextWeekInMS);
var dayToday = dayNames[today.getDay() + 1];
var converteddate = customDateString(calresult)
							
function customDateString(oneDate) {
			
	var theDay = dayNames[oneDate.getDay() + 1];
	var theMonth = monthNames[oneDate.getMonth() + 1];
	var theYear = oneDate.getYear();

		if (theDay == "Sunday") {
		today = new Date();
		todayInMS = today.getTime();
		nextWeekInMS =  todayInMS - (60*60*24*16*1000);//non-holiday
		//nextWeekInMS =  todayInMS - (60*60*24*17*1000);//monday holiday
		calresult =  new Date(nextWeekInMS);
		oneDate = calresult;
		theDay = dayNames[oneDate.getDay() + 1];
		theMonth = monthNames[oneDate.getMonth() + 1];
		theYear = oneDate.getYear();
		}	

		if (theDay == "Saturday") {
		today = new Date();
		todayInMS = today.getTime();
		nextWeekInMS =  todayInMS - (60*60*24*15*1000); //non-holiday
		//nextWeekInMS =  todayInMS - (60*60*24*16*1000); //monday holiday
		calresult =  new Date(nextWeekInMS);
		oneDate = calresult;
		theDay = dayNames[oneDate.getDay() + 1];
		theMonth = monthNames[oneDate.getMonth() + 1];
		theYear = oneDate.getYear();

		}		

		if (theDay == "Friday") {
		today = new Date();
		todayInMS = today.getTime();
		nextWeekInMS =  todayInMS - (60*60*24*12*1000); //non-holiday
		//nextWeekInMS =  todayInMS - (60*60*24*13*1000); //monday holiday
		calresult =  new Date(nextWeekInMS);
		oneDate = calresult;
		theDay = dayNames[oneDate.getDay() + 1];
		theMonth = monthNames[oneDate.getMonth() + 1];
		theYear = oneDate.getYear();

		}		
			
		if (dayToday == "Saturday") {
		today = new Date();
		todayInMS = today.getTime();
		nextWeekInMS =  todayInMS - (60*60*24*13*1000); //non-holiday
		//nextWeekInMS =  todayInMS - (60*60*24*14*1000); //monday holiday
		calresult =  new Date(nextWeekInMS);
		oneDate = calresult;
		theDay = dayNames[oneDate.getDay() + 1];
		theMonth = monthNames[oneDate.getMonth() + 1];
		theYear = oneDate.getYear();

		}	

		if (dayToday == "Sunday") {
		today = new Date();
		todayInMS = today.getTime();
		nextWeekInMS =  todayInMS - (60*60*24*14*1000); //non-holiday
		//nextWeekInMS =  todayInMS - (60*60*24*15*1000); //monday holiday
		calresult =  new Date(nextWeekInMS);
		oneDate = calresult;
		theDay = dayNames[oneDate.getDay() + 1];
		theMonth = monthNames[oneDate.getMonth() + 1];
		theYear = oneDate.getYear();

		}	
	
		calresult =  new Date(nextWeekInMS);
		oneDate = calresult;
		return  theDay + ", " + theMonth + " " + oneDate.getDate() 
}
		
		


var expdateInMS =  todayInMS - (60*60*24*90*1000);
var expresult =  new Date(expdateInMS);
var expdate = customDateString2(expresult)

function customDateString2(oneDate) {
var expDay = dayNames[oneDate.getDay() + 1]
var expMonth = monthNames[oneDate.getMonth() + 1]
var expYear = oneDate.getYear()

return expDay + ", " + expMonth + " " + oneDate.getDate() 
}
		
// Stop hiding from old browsers. -->