<!--
var text = 0;
var message=new Array();
message[0] = "No matter the content, there is NEVER a good reason to forward e-mail chain letters!"
message[1] = "As should be done with ALL e-mail chain letters, delete them and don't pass them on to others."
function changeText() {
if (message.length > 0) {
document.change.descript.value=message[text];
text++;
}
if (text == 2) {text = 0; }  // change the # at the left to the maximum # of message lines you want included
window.setTimeout("changeText()", 5000); }  // change the # on the left to adjust the speed of the
                                            // scroll. The smaller the # the faster the speed
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
if (oldonload) {
oldonload();
}
func();
}
}
}
document.write('<form style="margin-bottom: 0" name="change"><table cellspacing="0" cellpadding="0" border="0" summary=" "><tr>');
document.write('<td><textarea class="notice" name="descript"></textarea></td>');
document.write('</tr></table></form><font face="times new roman" size="1">&nbsp;</font><br>');
addLoadEvent(function() {
changeText();
});
//-->
