function snapIn(jumpSpaces,position) { var msg = "Welcome to our Homepage ! ----->> GQS / Ingenieurbüro / 68058 Mannheim"; var out = ""; for (var i=0; i 3) { jumpSpaces *= .09 } else { jumpSpaces-- } if (position != msg.length) { var cmd = "snapIn(" + jumpSpaces + "," + position + ")"; window.setTimeout(cmd,10); } return true } var delay=20; function moveit(was, startx, starty, endx, endy, steps, wait, clip) { if(wait && wait>0) setTimeout('moveit('+was+','+startx+','+starty+','+endx+','+endy+','+steps+','+(wait-1)+',"'+clip+'")', delay); else { if(document.layers) { if(clip==1) { document.layers["f"+was].clip.right=startx; document.layers["f"+was].clip.top=starty; } else { document.layers["f"+was].left=startx; document.layers["f"+was].top=starty; } } else { if(clip==1) { document.all["f"+was].style.clip="rect("+starty+" "+startx+" 1000 0)"; // "+startx+" "+starty+")"; } else { document.all["f"+was].style.left=startx; document.all["f"+was].style.top=starty; } } startx+=(endx-startx)/steps; starty+=(endy-starty)/steps; if(steps>0) setTimeout('moveit('+was+','+startx+','+starty+','+endx+','+endy+','+(steps-1)+',0,"'+clip+'")', delay); else if(was==7) { if(document.layers) document.layers["f7"].left=-1000; } } }