var isnn,isie
if(navigator.appName=='Microsoft Internet Explorer') //check the browser
{  isie=true }

if(navigator.appName=='Netscape')
{  isnn=true }


  message     = "Modelagentur Doris Ethofer^" +
                "Hauptstrasse 93   2452 Mannersdorf^" +
                "Tel: +43 (0)2168/62614 14^" +
		    "Fax: +43 (0)2168/62614 12^" +
		    "Mobil: +43 (0)676/5148176^" +			
                "Email: fashion_team_ethofer@utanet.at^" + 
                "^"
  scrollSpeed = 10
  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)
  }

scrollText(0)