<!-- Begin
function writeMarquee() {

	var message = new Array(10);
	message[0] = '';
	message[1] = "
<font color='#ff0000'><strong>Air Charter Service operates over 4000 charters per year with a turnover of more than $250m.&nbsp;
</strong></font><font color='#ff0000'><strong>With&nbsp;offices in London, Toronto, New York, Paris, Bilbao, Moscow, Johannesburg, Dubai, Hong Kong and Tokyo, Air Charter Service gives you access to aircraft anywhere in the world. 
Call now to speak to an account manager!</strong></font> 
";
	var storyspacer = '&nbsp;&nbsp;&nbsp;<b> | </b>&nbsp;&nbsp;&nbsp;';

	var msg = '';
	var j = '1';
	for (i = 0; i <= 1; i++){

		msg = msg + message[i];
		if (message[i] != ''){

		if(i != j){

			msg = msg + storyspacer;
		}
		}
	}
	document.write("<marquee bgcolor='#FFFFFF' scrolldelay='20' scrollamount='3' class='newstext2' onMouseover='this.scrollDelay=200' onMouseout='this.scrollDelay=20'>" + msg + "</marquee>"); 
}
writeMarquee();
//  End -->
