var timerID = null;
var timerRunning = false
var id,pause=0,position=0,nCnt=1;

function txtScroll() {
var i,x

var message2="  -  -  -  >>  There is no Charge for Hotels to be included in our list - Inclusion in our lists gets you in the eyes and minds of potential guests - It costs nothing, What have you got to loose - Give it a try !!";
var message3="  -  -  -  >>  IBRUs information about hotels is available from Mobile Phones - Click on the 'FIND HOTEL - Text Only' button to see how - try it, you never know when you will find it useful !!";
//var message="  -  -  -  >>  12,000 hotels in our Lists !! . . . . . . at 10:49 PM on Tuesday 4th October 2005, the 12,000 th hotel was added to our lists - that is a bit special - we are so proud - thanks to all our supporters !!";
var message1="  -  -  -  >>  Add yourself to our Mailing List - When we get One Hundred subscribers, we will draw one of the names - the Prize is a free night for two in the five star Draycott Hotel in Chelsea. Please tell others to subscribe !!";
//var message="  -  -  -  >>  we are arranging a prize for a draw that we intend to hold.  We hope to give a free night for two in a London five star hotel. Everyone in our Mailing List will be entered into the Draw.";
//var message = message1;
			if (nCnt==1)
				{
				document.tickerTape.tickerTape.style.color = "Blue";
				message = message1;
				}
			if (nCnt==2)
				{
				document.tickerTape.tickerTape.style.color = "Red";
				message = message2;
				}
			if (nCnt==3)
				{
				document.tickerTape.tickerTape.style.color = "Black";
				message = message3;
				}


x=(60/message.length)+1;
	for(i=0;i<=x;i++) message+=""+message;
	document.tickerTape.tickerTape.value=message.substring(position,position+100)
	if(position++==250)
		{
		position=2;
		nCnt++;
		if(nCnt==4) nCnt=1;
		}
id=setTimeout("txtScroll()",1000/10);
}

function action() {
	if(!pause) {
		clearTimout(id);
		pause=1; }

	else {
		ticker();
		pause=0;}
}


document.writeln ('<center><form name="tickerTape"><input type=text name="tickerTape" class="scrollingBox" size=60></form>')

txtScroll()





