tsdragon!!!
oh sorry for the code404 ... gee thanks anyway.
I do appreciate you getting back to me to help.
Completion time for the updating was changed to May 1, 2001 1:00 am GMT-700
I managed to complete ahead of schedule 11:30 pm
I decided to change back to the original countdown script.
Running it live was just a few hours (3) away from completion time so, I didn't have to correct the "days typo" ...but I've been looking at the code and don't know exactly where to correct it. I do plan to use the script again.
<!-- Begin
function getTime() {
now = new Date();
y2k = new Date("May 1 2001 01:00:00 GMT-700"

;
days = (y2k - now) / 1000 / 60 / 60 / 24;
daysRound = Math.floor(days);
hours = (y2k - now) / 1000 / 60 / 60 - (24 * daysRound);
hoursRound = Math.floor(hours);
minutes = (y2k - now) / 1000 /60 - (24 * 60 * daysRound) - (60 * hoursRound);
minutesRound = Math.floor(minutes);
seconds = (y2k - now) / 1000 - (24 * 60 * 60 * daysRound) - (60 * 60 * hoursRound) - (60 * minutesRound);
secondsRound = Math.round(seconds);
sec = (secondsRound == 1) ? " second." : " seconds.";
min = (minutesRound == 1) ? " minute" : " minutes, ";
hr = (hoursRound == 1) ? " hour" : " hours, ";
dy = (daysRound == 1) ? " day" : " days, "
document.timeForm.input1.value = "Time remaining: " + daysRound + dy + hoursRound + hr + minutesRound + min + secondsRound + sec;
newtime = window.setTimeout("getTime();", 1000);
}
// End -->
Thanks again!!
code404