<!-- Begin
function writeMarquee() {

	var message = new Array(10);
	message[0] = '';
	message[1] = "<font color='#ff0000'><strong>Air Charter Service have offices in London,</strong><strong>Johannesburg,</strong></font><font color='#ff0000'><strong> New York, Bilbao, Moscow, Dubai and Hong Kong giving you access to aircraft anywhere in the world. Call now to speak to an account manager!</strong></font>&nbsp;";
	message[2] = "<font color='#ff0000'><strong>Air Charter Service f&uuml;hrt j&auml;hrlich mehr als 3000 Fl&uuml;ge durch und hat einen Umsatz von &uuml;ber 200 Mio. Dollar</strong></font>";
	var storyspacer = '&nbsp;&nbsp;&nbsp;<b> | </b>&nbsp;&nbsp;&nbsp;';

	var msg = '';
	var j = '2';
	for (i = 0; i <= 2; 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 -->
