  function doBlink()
  {
    var blink = document.all.tags("BLINK");
    for (var i=0; i<blink.length; i++)
      blink[i].style.visibility =
        blink[i].style.visibility == "" ? "hidden" : "";
  }

  function startBlink()
  {
    if (document.all)
      setInterval("doBlink()", 1000);
  }
  
  // Start blinking text
  window.onload = startBlink;

 // Start changing text and colors
 setInterval("chcolor()", 2000);

 function ScrollMessage() {
  var newText = msg.substring(pos, msg.length) + msg.substring(0, pos);
  var td = document.getElementById("Scroll");
  td.firstChild.nodeValue = newText;
  pos++;
  if (pos> msg.length)
    pos = 0;
  window.setTimeout("ScrollMessage()", 1000);
 } 

 function initArray()
 {
  this.length = initArray.arguments.length;
  for (var i=0; i<this.length; i++)
    this[i] = initArray.arguments[i];
 }

 var ctext = "Your One Source for Promotions, Gifts, Awards and Apparel";

 var spee00;
 var x = 0;
 var color = new initArray("red", "gold", "white");

 document.write('<table id="c" width="790" border="0" cellspacing="0" cellpadding="0" align="left">');
 document.write('<tr>');
 document.write('<td valign="top" align="left" width="100">');
 document.write('&nbsp&nbsp');
 document.write('</td>');
 document.write('<td valign="top" align="left" width="*">');
 document.write(ctext);
 document.write('</td>');
 document.write('</tr>');
 document.write('</table>');
 document.write('<br /><br />');


 function chcolor()
 {
  if (navigator.appName == "Netscape")
  {
    document.c.document.write('<font color="' + color[x]);
    document.c.document.write('">'+ctext+'<\font>');
    document.c.document.close();
  }
  else 
    document.all.c.style.color = color[x];
      
    x < color.length - 1 ? x++ : x = 0;
 }
