/*
onload="mq2regen2()"
<!-- scrolling marquee ------------------------------------------->
<script>
    var mq2w=120   // width
    var mq2h=80    // height
    var mq2speed=1 // speed
    var mq2txt='<font face=tahoma size=1 color=#FFFFCC>New Message.</font>'
</script>
<script src="mq2.js"></script>
<ilayer width=&{mq2w}; height=&{mq2h}; name="cmq201">
<layer name="cmq202"></layer>
</ilayer>
<!-- scrolling marquee end --------------------------------------->
*/

if (document.all)
document.write('<marquee direction="up" scrollAmount='+mq2speed+' style="width:'+mq2w+';height:'+mq2h+'">'+mq2txt+'</marquee>')

function mq2regen(){
  window.location.reload()
}

function mq2regen2(){
  if (document.layers){
    setTimeout("window.onresize=mq2regen",450)
    mq2init()
  }
}

function mq2init(){
//  document.cmq201.document.cmq202.document.write(mq2txt)
//  document.cmq201.document.cmq202.document.close()
//var mq2w=280   // width
//var mq2h=180    // height

  document.cmq201.resizeTo(mq2w, mq2h)
  mq2length=document.cmq201.document.cmq202.document.height
  mq2scroll()
}

function mq2scroll(){
  if (document.cmq201.document.cmq202.top>=mq2length*(-1)){
    document.cmq201.document.cmq202.top-=mq2speed
    setTimeout("mq2scroll()",100)
  }
  else{
    document.cmq201.document.cmq202.top=mq2h
    mq2scroll()
  }
}
