document.write("
"); document.write( "
"); document.write( "
"); document.write( "
All Hallow's Read
"); //document.write( "
will be released
in the USA in
"); document.write( "
will be upon us in
"); document.write( "
"); document.write( "
"); document.writeln("
"); var update_freq = 1; var dateDiff = 1038269; var mn_len = 60; var hr_len = mn_len * 60; var dy_len = hr_len * 24; var wk_len = dy_len * 7; var thisOne = document.getElementById("countdown_box"); function output_countdown() { if (dateDiff < 1) { thisOne.innerHTML = "NOW AVAILABLE!"; } else { weeks = parseInt(dateDiff / wk_len); secs = dateDiff % wk_len; days = parseInt(secs / dy_len); secs = secs % dy_len; hours = parseInt(secs / hr_len); secs = secs % hr_len; mins = parseInt(secs / mn_len); secs = secs % mn_len; outStr = "" + weeks + " week"; if (weeks != 1) outStr += "s"; outStr += ", "; outStr += "" + days + " day"; if (days != 1) outStr += "s"; outStr += ", "; outStr += "" + hours + " hour"; if (hours != 1) outStr += "s"; if (update_freq <= 60) { outStr += ", "; outStr += "" + mins + " minute"; if (mins != 1) outStr += "s"; if (update_freq <= 1) { outStr += ", "; outStr += "" + secs + " second"; if (secs != 1) outStr += "s"; } } outStr += ""; thisOne.innerHTML = outStr; dateDiff = dateDiff - update_freq; setTimeout("output_countdown()", update_freq * 1000); } } output_countdown();