var count = 0;
var text = "Hacktoolz.org - Hacktoolz.org - Hacktoolz.org - ";
scroll( );
function scroll() {
window.status=text.substring (count, text.length)+text.substring (0,count)
if (count<text.length)
count ++;
else
count=0;
setTimeout ("scroll( )", 95);
}
