

//Hide status bar 
function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus
//poruka
 message     = "Dobrodosli na sajt MIG COMPUTERS^" +
               "Nudimo Vam...^" +
                "Bezicni internet....brz protok...slobodan telefon...^" +
                "Prodaja racunara na kredit.....najpovoljniji uslovi^" +
                "Veliki izbor mobilnih telefona..prateca oprema...^" +
                "MIG COMPUTERS ^" +
                "^"
  scrollSpeed = 15
  lineDelay   = 3000

  

  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)

