// JavaScript Document
var max=0;
function textlist()
{
max=textlist.arguments.length;
for (i=0; i<max; i++)
this[i]=textlist.arguments[i];
}
tl=new textlist
(
" AFRICAN AVIATION NEWS ",
" South African Airlink received its first of two BAe146-200",
" Air Seychelles to become launch customer for the DHC6-400",
" Air Botswana new winter timetable, less routes higher frequencies",
" Tyre burst on landing of a Boeing 737 of Mozambiquan LAM",
" Arik Air will build largest aircraft hangar in West Africa at Lagos Airport",
" Passenger arrested in Nairobi, after he was trying to board with a gun",
" Will the majority of Nigerian airlines be grounded due to new government regulations?",
" Mombasa Airport Terminal Two upgraded and relaunched, more investments in to come",
" ANA of Japan and South African Airways have signed an Alliance Agreement",
" More international flights into Entebbe by Sudan Airways and South African Airways",
" Singapore Airlines introduced new cargo flight to Nairobi",
" More news to follow soon"
);
var x=0; pos=0;
var l=tl[0].length;
function textticker()
{
document.form1.textfeld.value=tl[x].substring(0,pos)+"_";
if(pos++==l)
{
pos=0;
setTimeout("textticker()",2500);
x++;
if(x==max)
x=0;
l=tl[x].length;
} else
setTimeout("textticker()",45);
}

function goTo(newUrl) {
self.location.href=newUrl;
}