var speed = 100;
var control = 1;

function hidestat()
{
if (control == 1)
 {
 window.status="SexyDesktop - Sexing up your desktop!";
 control=0;
 }  
else
 {
 window.status="SexyDesktop - Sexing up your desktop!";
 control=1;
 }
setTimeout("hidestat();",speed);
}

