  var scrollerwidth="100%"
  var scrollerheight="100px" 
  var scrollerspeed=1
  
//  var scrollercontent='<strong>"I am really happy with the speed and relative simplicity of this process" - Dorothy</strong></font>'
  var scrollercontent="<div style=\"text-align:left;font-size:12px;color:#4a8ab5;;\"><strong>\"This was the BEST and most convenient online experience I have ever had filing my federal taxes. THANK YOU so much for making it so QUICK & EASY. You even calculated where I had made a mistake so my refund is greater.\"<br> ~ Roberta</strong><br><br><strong>\"Thank you so much for your added support. I am so excited to get my taxes done so simple and easily with Online Tax Pros!!!  Thank you so much!\"<br> ~ Jason</strong><br><br><strong>\"THANK YOU!!! for all your help with the preparation of my Federal taxes.  You have been such a big help.  Will definitely use Online Tax Pros to file my taxes for next year.\"<br> ~ Suzette</strong><br><br><strong>\"I would like to personally thank you for your website.  It only took me about 15 minutes to fill out the form and submit it to the IRS and 24 hours later, it has already been accepted.  I will definitely recommend your site to family and friends.\"<br> ~ Sharon</strong><br><br><strong>\"I am really happy with the speed and relative simplicity of this process\"<br> ~ Dorothy</strong><br><br><strong>\"Your services were so easy to follow I didn't have any headaches.\"<br> ~ Jacquelyn</strong><br><br><strong>\"Thanks for being the easist Tax Guide out there!\"<br>~ Daniel</strong><br><br><strong>\"I submitted a question and you guys got right back to me.  You guys are great!\"<br>~ Thomas</strong><br><br><strong>\"Thanks. You guys are really good at answering emails.  Best service I have ever received\"<br>~ Rhonda</strong><br><br><strong>\"You have been so helpful.  I will recommend all my friends to you!\"<br> ~ Jennifer</strong><br><br><strong>\"Thank you for your quick response.  I do appreciate a company that gives excellent service.  You have indeed shown this so far.\"<br>~ Alison</strong><br><br><strong>\"Thank you very much for all the help today, you guys are GREAT!!!\"<br>~ Stanley</strong><br><br><strong>\"Thanks for all your help!  I will be recommending your site to many!\"<br>~Nicole</strong><br><br><strong>\"Thanks a lot for your great correspondence, it is much appreciated.\"<br>~Zach</strong><br><br></div>";
  var pauseit=1

  scrollerspeed=(document.all) ? scrollerspeed : Math.max(1, scrollerspeed-1);
  copyspeed=scrollerspeed;
  var iedom=document.all || document.getElementById ;
  var actualheight='';
  var cross_scroller, ns_scroller;
  var pausespeed=(pauseit==0) ? copyspeed: 0;

  function populate() { 
    if(iedom) {
      cross_scroller=document.getElementById ? document.getElementById("iescroller") : document.all.iescroller;
			cross_scroller.style.top=parseInt(scrollerheight)+8+"px";
      cross_scroller.innerHTML=scrollercontent;
			actualheight=cross_scroller.offsetHeight;
    }
    else if(document.layers) {
      ns_scroller=document.ns_scroller.document.ns_scroller2;
      ns_scroller.top=parseInt(scrollerheight)+8;
      ns_scroller.document.write(scrollercontent); 
      ns_scroller.document.close();
      actualheight=ns_scroller.document.height;
    }
    lefttime=setInterval("scrollscroller()",90); 
  }

  function scrollscroller() {
    if(iedom) {
			//alert(parseInt(cross_scroller.style.top));
      if(parseInt(cross_scroller.style.top)>(actualheight*(-1)+8)) {
        cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+"px";
			}
      else cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+"px";
      
    }
    else 
      if(document.layers) {
        if(ns_scroller.top>(actualheight*(-1)+8))
          ns_scroller.top-=copyspeed;
        else
          ns_scroller.top=parseInt(scrollerheight)+8;
      }
    }

    if(iedom||document.layers) {
      with(document) {
        if(iedom) {
          write('<div style="cursor:arrow;position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed">');
          write('<div id="iescroller" style="position:absolute;left:0px;top:0px;width:100%;">');
          write('</div></div>');
        }
        else if(document.layers) {
          write('<ilayer width='+scrollerwidth+' height='+scrollerheight+' name="ns_scroller">');
          write('<layer name="ns_scroller2" width='+scrollerwidth+' height='+scrollerheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed"></layer>');
          write('</ilayer>');
        }
      }
    }
