function writePoofsBanner(){ var newBanner = "
"; document.write( newBanner ) } function loadMessage(pDaysLeft){ var pBnr = document.getElementById('poofsBanner'); var pMsg = "
" ; pMsg += "A new Poof is available!
Check out Rex in the catalog."; pMsg += "
(This box will show for the next " + pDaysLeft + " day"; if (pDaysLeft > 1){pMsg += "s";} pMsg += ")
"; pBnr.innerHTML += pMsg; } function numberOfDaysToShowMessage(pDay){ var dt = new Date().getTime(); var dtDay = Math.ceil(dt / 86400000); var pStampDay = 14368; var pStamp = (pStampDay * 86400000); pDaysLeft = (pStampDay - dtDay - -pDay); if (pDaysLeft >= 1) { loadMessage(pDaysLeft); } if (pDay == -2153) { loadMessage('7'); document.write( "
. Date = " + dtDay + " (" + dt + ")
Stamp = " + pStampDay + " (" + pStamp + ")
DaysLeft = " + pDaysLeft + " of " + pDay ); } } writePoofsBanner();