/*This Script redirects to resolution specific pages
*/

var message="We Are The Best --- !! BOOKMARK NOW !! --- We Are The Best";
var visible=0;
var speed=300;
var seconds=10000;
var timerID = null;
window.status=message;

function Flash() 
{
 if (visible == 0) 
 {window.status=message; visible=1;} 
 else {window.status="";visible=0;}
}

function flasher()
{
 timerID = setInterval("Flash()", speed);
 setTimeout("clearInterval(timerID)", seconds);
}

function start_flasher(fmessage,fspeed,fseconds)
{
 message=fmessage;

 timerID = setInterval("Flash()", fspeed);
 setTimeout("clearInterval(timerID)", fseconds);
}

