function boldIt(theText) {
   if (document.styleSheets) theText.style.color='red';
}
function unBoldIt(theText) {
   if (document.styleSheets) theText.style.color='white';
}
function redirect(thepage) {
   top.location.replace(thepage);
}
var imgsToAnimate = 2;
var img0 = new Image( 202, 72 );
img0.src = "tss16.gif";
var img1 = new Image( 202, 72 );
img1.src = "tss6.gif";
var i = 0;
function animate() {
   document.images[0].src = eval("img" + i ).src;
   i++;
   if (i ==imgsToAnimate) i=0; 
   junk = setTimeout("animate();", 600); // in milliseconds
}
function goPage(thePage) {
   window.location=thePage;
}
function startTime(thePage,delay) {
   setTimeout("goPage('"+thePage+"')",delay);
}