var tickercontents=new Array()
tickercontents[0]="I purchased Womble EasyDVD after doing days of research on DVD authoring software. Some of them had a trial versions which I tried out. After trying out other software, 5 different ones, I bought Womble EasyDVD. Let me save you the time that it took me to decide. This is the best of all. It is fast, easy, stable and each cent its price worth! I never build my private DVDs so easy and fast in such a good quality. Plus, the tech support is the best I have ever found on the Net. They are always speedy in answering every question."           
tickercontents[1]="Having used the trial version of this software to make two dvds, I have now purchased it. I just want to say what a brilliant piece of software it is. It allows me to cut scenes from my MPEG2 clips with frame-accuracy and then author a DVD, complete with motion menus, without wasting hours re-encoding the entire video and then burn my DVD video to a DVD disc. Also, it is so intuitive. I absolutely love it."
tickercontents[2]="I have been using Womble's products for years and I like their high-quality MPEG Video Wizard DVD editor for its smooth process and its powerful editing functions. In the past, I had wished that they can develop some new products for us and until Womble EasyDVD's presetation. I got to say, you guys don't let me down - as you always do. EasyDVD is great, nice job. "
tickercontents[3]="This is the easiest-to-use DVD authoring program I've ever seen. Judging its perfect design, whether the user-friendly interface, or the menu creation and the video quality, or the fast processing when burning a disc, EasyDVD is the best!"
tickercontents[4]="I have been struggling for weeks with Ulead video editor and  my Sony HDR-SR10e camcoder hardrive Mpeg files with chronic audio sync issues. The same 40min project took over 2 hrs to render in Ulead and took less than 20mins to have a DVD playing in my player sound all in sync with your little gem! I am truely amazed as if it wasn't for your program I would be selling my camcorder and forgetting about PC editing for good."
tickercontents[5]="I just want to say what a brilliant piece of software it is. I'm afraid that, having bought a Sony DVD player a few months back, I bought the Sony Vegas Movie Studio Platinum 6 to edit my DVD footage and make films, but what a waste of money that was ... always crashing, defying my 'intuitive' approach as to how to do things, generally driving me mad with frustration over wasted time, lost work etc. By contrast, MPEG Video Wizard DVD seems bug-free, has never yet crashed, locked up on me, or failed to deliver exactly what I want. Also, it is so intuitive. I absolutely love it."
tickercontents[6]="MG you guys are amazing for adding export support to formats like mp4.  We all know mpeg2 is on the way out and i thought i would have to use a different program, (although i LOVE yours DEARLY) but you guys have made my life SOOO much easier now."

var persistlastviewedmsg=1 //
var persistmsgbehavior="onload" //set to "onload" or "onclick".
var tickdelay=8000
var divonclick=(persistlastviewedmsg && persistmsgbehavior=="onclick")? 'onClick="savelastmsg()" ' : ''
var currentmessage=0

function changetickercontent()
{
  if (crosstick.filters && crosstick.filters.length>0)
      crosstick.filters[0].Apply()
  crosstick.innerHTML=tickercontents[currentmessage]
  if (crosstick.filters && crosstick.filters.length>0)
      crosstick.filters[0].Play()
  currentmessage=(currentmessage==tickercontents.length-1)? currentmessage=0 : currentmessage+1
  var filterduration=(crosstick.filters&&crosstick.filters.length>0)? crosstick.filters[0].duration*1000 : 0
  setTimeout("changetickercontent()",tickdelay+filterduration)
}

function beginticker()
{
  if (persistlastviewedmsg && get_cookie("lastmsgnum")!="")
      revivelastmsg()
  crosstick=document.getElementById? document.getElementById("memoryticker") : document.all.memoryticker
  changetickercontent()
}

function get_cookie(Name)
{
  var search = Name + "="
  var returnvalue = ""
  if (document.cookie.length > 0)
  {
      offset = document.cookie.indexOf(search)
      if (offset != -1)
      {
          offset += search.length
          end = document.cookie.indexOf(";", offset)
          if (end == -1)
              end = document.cookie.length;
          returnvalue=unescape(document.cookie.substring(offset, end))
      }
  }
  return returnvalue;
}

function savelastmsg()
{
    document.cookie="lastmsgnum="+currentmessage
}

function revivelastmsg()
{
    currentmessage=parseInt(get_cookie("lastmsgnum"))
    currentmessage=(currentmessage==0)? tickercontents.length-1 : currentmessage-1
}

if (persistlastviewedmsg && persistmsgbehavior=="onload")
    window.onunload=savelastmsg
if (document.all||document.getElementById)
    document.write('<div id="memoryticker" '+divonclick+'></div>')
if (window.addEventListener)
    window.addEventListener("load", beginticker, false)
else if (window.attachEvent)
    window.attachEvent("onload", beginticker)
else if (document.all || document.getElementById)
    window.onload=beginticker
