<!--
line=new Object()
line[1]="Bonn"
line[2]="Berlin"
line[3]="London"
line[4]="Prague"
line[5]="Istanbul"
line[6]="Moscow"
line[7]="Sofia"
line[8]="Bucharest"
line[9]="Los Angeles"

lines=9 

document.write('<form name="bannerform">')
document.write('<input type="text" name="banner" size="7.5"')
document.write('style="background-color: #0099cc; color: #000000; text-align: center; font-weight: bold; font-family: Arial,sans-serif; font-size: 9pt; border: none;"')
document.write('</form>')

temp=""
nextchar=-1;
nextline=1;
cursor="\\"
function animate(){
if (temp==line[nextline] & temp.length==line[nextline].length & nextline!=lines){
nextline++;
nextchar=-1;
document.bannerform.banner.value=temp;
temp="";
setTimeout("nextstep()",2000)}
else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){
nextline=1;
nextchar=-1;
document.bannerform.banner.value=temp;
temp="";
setTimeout("nextstep()",2000)}
else{
nextstep()}}

function nextstep(){
if (cursor=="\\"){
cursor="|"}
nextchar++;
temp+=line[nextline].charAt(nextchar);
document.bannerform.banner.value=temp+cursor
setTimeout("animate()",50)}

document.onload=animate();
// -->