<!-- scrolltitle.js by detour@metalshell.com -->
<!-- Scroll a message across the title bar forwards, -->
<!-- backwards and with a delay. -->
<!-- http:
<script language="javaScript">
var pos=0;
var str="Metalshell ";
var npos=str.length;
setInterval("upDate()",300);
function upDate()
{
document.title=str.substring(pos,str.length)+str.substring(0,pos);
if(pos < str.length) pos++;
else pos = 0;
}
function upDateFW()
{
document.title=str.substring(npos,str.length)+str.substring(0,npos);
if(npos > 0) npos--;
else npos = str.length;
}
var delay = 20;
function upDateWD()
{
if(pos < str.length) {
document.title=str.substring(pos,str.length)+str.substring(0,pos);
} else {
if(pos > str.length+delay) {
pos = 0;
}
}
pos++;
}
</script>