
// Keep home page from loading in a frame
if(top.frames.length !=0) { top.location = document.URL; }
// 

//
    message     = "Welcome To  Writecall.com -- The Web's Premier Covered Call Alert Service.                                                                                                                                                                                                                                                               ^" +
                "Take The Tour And Learn About Our Award-Winning Service.                                                                                                                                                                                                                                                                                                                                                                                                                        ^"  +
				"Thank You For Referring This Site To Your Friends and Colleagues.                                                                                                                                                                                                                                                          ^"  +
                
"^"
  scrollSpeed = 2
  lineDelay   = 1500
  txt         = ""
  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }
  // Unhide 
scrollText(0)
  //  
  
