var scrlStr="Designed & Scripted 2005 by Christian Strumpler"
var vs_sp = 40;
var vs_warte = 40;
var strLen=scrlStr.length;
var width=strLen+vs_warte;
var pos=1-width;
vs_ltx2();
function vs_ltx2(){
var type = ""; pos++;
if(pos==strLen) pos=1-width;
if(pos<0){ for(var i=1; i<=Math.abs(pos); i++)
type=type+"";
type=type+scrlStr.substring(0,width-i+1);}
else type=type+scrlStr.substring(pos,pos+width);
window.status=type;
setTimeout("vs_ltx2()",vs_sp);}

