var text1="Fijne dag en een prettig nieuwjaar....Team OBJS De Weerborg!"
comeback=0
cometo=0
function dis(){
window.status=text1.substring(0,cometo)
if(comeback==1){
cometo--;
if(cometo==0){comeback=1}
}else{
cometo++;
if(cometo==text1.length){comeback=1}
}
window.status=text1.substring(0,cometo)
if(cometo==text1.length){
window.setTimeout("dis()",10000);
}else{
window.setTimeout("dis()",50);
}
}
dis() 
