var scrlStr = "+++ Arbeitsbühnenvermietung RETZSCH +++ " +
                        "Verkauf +++ " +
                        "Service +++ " +
                        "Vertragshändler Hydrokran Swisslift +++"
        

var width = 65;
var strLen = scrlStr.length;
var pos = 1 - width;                
                                 
function scroll(){
    var scroll = "";               
    pos++;                        
    if (pos == strLen)         
        pos = 1 - width;

    if (pos<0) {                   
        for (var i=1; i<=Math.abs(pos); i++)
            scroll = scroll + " ";  
            scroll = scroll + scrlStr.substring(0, width - i + 1);
    }
    else
        scroll = scroll + scrlStr.substring(pos, pos + width);

    document.scrollMsg.message.value = scroll;       
    setTimeout("scroll()",100);  
}

function Bildwechsel(Bildnr,Bildobjekt) 
  { 
     window.document.images[Bildnr].src = Bildobjekt.src; 
   }

  function ChangeFrames(URL1,F1,URL2,F2)
     {  
      parent.frames[F1].location.href=URL1;
      parent.frames[F2].location.href=URL2;
     } 
