/*
Rozaleenda Status Bar Message
Developed by Swagato Gangopadhyay
Email: webmaster@w2n.net
Copyright © The Rozaleenda Group, Inc.
*/


//  Start of 'Status Bar Message' Script  ////////////////////

var speed = 500;
var control = 1;

function flash()
{
	if (control == 1)
	{
	window.status="The W2N v2 Sites - Coming Soon...";
	control=0;
	}
	else
	{
	window.status=" ";
	control=1;
	}
setTimeout("flash();",speed);
}

flash();

//  End of 'Status Bar Message' Script  ////////////////////
