line=new Object()
line[1]="Nevíte si s něčím rady?  Pak neváhejte a obraťte se na nás, rádi zodpovíme všechny vaše dotazy…"
line[2]="Upřednostňujete osobní odběr?  Na PRAZE 5 jsme vám po domluvě k dispozici i ve večerních hodinách :-)"
line[3]="Nechcete platit poštovné?  Máme pro vás několik možností, jak na to. Více v obchodních podmínkách…"
line[4]="Narazili jste na lepší cenu nějakého produktu?  Upozorněte nás a dostanete jej za cenu ještě nižší…"

lines=4 

document.write('<form name="upoutavkaform">')
document.write('<div align="left"><p><input type="text" name="upoutavka" size="110"')
document.write(' style="width: 750px; margin-left: 5px; margin-top: 3px; _padding-top: 3px; background-color: transparent; color: #ffffff; text-align: left; font-family: Verdana; font-size: 8pt;  border: none; clear: none; float: left" onfocus="blur()"></p>')
document.write('</div>')
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.upoutavkaform.upoutavka.value=temp;
temp="";
setTimeout("nextstep()",2000)}
else if (nextline==lines & temp==line[nextline] & temp.length==line[nextline].length){
nextline=1;
nextchar=-1;
document.upoutavkaform.upoutavka.value=temp;
temp="";
setTimeout("nextstep()",2000)}
else{
nextstep()}}

function nextstep(){
if (cursor=="\\"){
cursor=""}

else if (cursor=="-"){
cursor=""}
nextchar++;
temp+=line[nextline].charAt(nextchar);
document.upoutavkaform.upoutavka.value=temp+cursor
setTimeout("animate()",30)}


document.onload=animate();

