// JavaScript Document

<!--
function Ticker(name, id, shiftBy, interval)
{this.name = name;
this.id = id;
this.shiftBy = shiftBy ? shiftBy : 1;
this.interval = interval ? interval : 0;
this.runId	= null;
this.div = document.getElementById(id);
var node = this.div.firstChild;
var next;
while (node){next = node.nextSibling;if (node.nodeType == 3)this.div.removeChild(node);node = next;}
this.left = 436;
this.shiftLeftAt = this.div.firstChild.offsetWidth;
this.div.style.height = this.div.firstChild.offsetHeight;
this.div.style.width = 2 * screen.availWidth;
this.div.style.visibility = 'visible';}

function startTicker()
{this.stop();
this.left -= this.shiftBy;
if (this.left <= -this.shiftLeftAt)
{this.left = 436;
this.div.appendChild(this.div.firstChild);
this.shiftLeftAt = this.div.firstChild.offsetWidth;}
this.div.style.left = (this.left + 'px');
this.runId = setTimeout(this.name + '.start()', this.interval);}

function stopTicker()
{if (this.runId)clearTimeout(this.runId);this.runId = null;}

function changeTickerInterval(newinterval)
{if (typeof(newinterval) == 'string')newinterval =  parseInt('0' + newinterval, 10);
if (typeof(newinterval) == 'number' && newinterval > 0)this.interval = newinterval;
this.stop();
this.start();}

var Days = new Array('Sunday','Monday','Tuesday','Wednesday', 'Thursday','Friday','Saturday');
	var Months = new Array('January','February','March','April', 'May','June','July','August','September','October','November','December');

var today = new Date();
var Year = takeYear(today);
var Month = leadingZero(today.getMonth()+1);
var MonthName = Months[today.getMonth()];
var DayName = Days[today.getDay()];
var Day = leadingZero(today.getDate());
var Hours = today.getHours();
var ampm = "am";
if (Hours == 0) Hours = 12;
if (Hours > 11)
	ampm = "pm";
if (Hours > 12)
	Hours -= 12;
Hours = leadingZero(Hours);

var Minutes = leadingZero(today.getMinutes());
var Seconds = leadingZero(today.getSeconds());

function takeYear(theDate)
{
	x = theDate.getYear();
	var y = x % 100;
	y += (y < 38) ? 2000 : 1900;
	return y;
}

function leadingZero(nr)
{
	if (nr < 10) nr = "0" + nr;
	return nr;
}

Ticker.prototype.start = startTicker;
Ticker.prototype.stop = stopTicker;
Ticker.prototype.changeInterval = changeTickerInterval;
var ticker = null;

function init(){ticker = new Ticker('ticker', 'tickerID', 1, 15);ticker.start();}
onload = init
ns4 = (document.layers)? true:false
if (ns4 = "false"){
document.write('<div align="left" class="container">');
document.write('<div class="ticker" id="tickerID">');
document.write('	<span class="banner"><nobr>');

    document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;' + DayName + ' ' + MonthName + ' ' + Day + ', ' + Year + '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
	document.write('Personal and Corporation 3rd Quarter Estimated Payments for Calendar Year 2010 must be mailed on or before Wednesday, September 15th to be considered timely.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Extended Corporation Income Tax Returns for Calendar Year 2010 must be filed on or before Wednesday, September 15th to be considered timely.');
	
document.write('	</nobr></span>');
document.write('</div>');
document.write('</div>');
}
//-->
