/****
*Original:  Steve Dondley (steve@dondley.com)
*Web Site:  http://www.progressivevalley.com
*This script and many more are available free online at The JavaScript Source!! http://javascript.internet.com
*Begin
*/
function getTime() {
now = new Date();
raced = new Date("March 28 2010 07:00:00 GMT ");
days = (raced - now) / 1000 / 60 / 60 / 24;
daysRound = Math.floor(days);
hours = (raced - now) / 1000 / 60 / 60 - (24 * daysRound);
hoursRound = Math.floor(hours);
minutes = (raced - now) / 1000 /60 - (24 * 60 * daysRound) - (60 * hoursRound);
minutesRound = Math.floor(minutes);
seconds = (raced - now) / 1000 - (24 * 60 * 60 * daysRound) - (60 * 60 * hoursRound) - (60 * minutesRound);
secondsRound = Math.round(seconds);
sec = (secondsRound == 1) ? "s" : "s";
min = (minutesRound == 1) ? "m " : "m ";
hr = (hoursRound == 1) ? " hour " : " hours ";
dy = (daysRound == 1)  ? " day " : " days"
add = (daysRound == 1)  ? " The 2010 Australian Grand Prix in " : "The 2010 Australian Grand Prix in "
// document.timeForm.input1.value = daysRound  + dy + hoursRound + hr + minutesRound + min + secondsRound + sec;
// document.timeForm.input1.value = add + daysRound + dy ;
tc =(daysRound == 0) ? document.timeForm.input1.value = add + hoursRound + hr :document.timeForm.input1.value = add + daysRound + dy ;
newtime = window.setTimeout("getTime();", 1000);
}