// JavaScript Document
//POPUP
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_popupMsg(msg) { //v1.0
  alert(msg);
}
//-->
//STATUS BAR
  <!-- Hide from old browsers

  // All you have to do is put another text in the variable message.
  // Don't forget to break all lines with a ^
  // When you do not place a ^ at the end of all the message, the
  // message will not repeat

  message     = "RACUNARI I RACUNARSKE KOMPONENTE^" +
                "A MAZE D.O.O.   ...DO AMAZING THINGS...^" +
                "KICEVSKA br. 1/9, 11000 Beograd^" +
                "KONTAKT TEL/FAX: 011/2430-621^" +
                "WEB: http://www.a-maze.co.rs^" +
                "E-MAIL: office@a-maze.co.rs^" +
                "RADNO VREME: od 10h do 18h; SUBOTOM od 10h do 15h.^"  
				"^"
  scrollSpeed = 25
  lineDelay   = 2500

  // Do not change the text below //

  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)