function timer()
{
setTimeout('second_update()', 200);
}

function second_update()
{

<!--INITIAL VALUES
year_Seconds=31557600000;
<!--DETERMINE STARTING TIME FOR APRIL 6 IN CURRENT YEAR
year_update()

<!--GET LATEST TIME AND CALCULATE OFFSET FROM 6 APRIL 2004

d = new Date();
current_Time = d.getTime();

elapsed_Time=(current_Time-start_Time);
factor_Time=(elapsed_Time/year_Seconds);

<!--
Tax=160693500;
Tax_Factor=Math.round(Tax*factor_Time);
Tax_String = Tax_Factor.toString();

total_string=Tax_String;
num_len=total_string.length;
insert_commas(total_string,num_len);
Total_Tax_Display=total_display;

TAX.childNodes(0).childNodes(0).childNodes(0).innerText=(Total_Tax_Display);


setTimeout('second_update()', 1000);
}