<!--
	
	//var tscroller_width = line.length;
	var temp = ""
	var nextchar = -1;
	var cursor = "\\";

	function animate(){
		if (temp == line & temp.length == line.length){
			nextchar=-1;
			if (old == "true") { document.write(temp); old = "die"; return; }
			// Scrittura testo
			if (ns4) {typeTxtpos = document.typeTxtPosNS;livetypeTxt = typeTxtpos.document.typeTxtNS;livetypeTxt.document.write(temp);livetypeTxt.document.close();
			}else if (ie4) {typeTxtIE.innerHTML = temp;
			}else if (ns6){document.getElementById("typeTxtIE").innerHTML = temp;
			}            
			temp="";
			setTimeout("nextstep()",3000)
		}else{
			nextstep()
		}
	}

	function nextstep(){
		if (cursor == "\\"){
			cursor="|";
		}else if (cursor == "|"){
			cursor = "/";
		}else if (cursor == "/"){
			cursor = "-";
		}else if (cursor == "-"){
			cursor="\\";
		}
		nextchar++;
		temp+=line.charAt(nextchar);
		// Scrittura testo
		if (ns4) {typeTxtpos = document.typeTxtPosNS;livetypeTxt = typeTxtpos.document.typeTxtNS;livetypeTxt.document.write(temp+cursor);livetypeTxt.document.close();
		}else if (ie4) {typeTxtIE.innerHTML = temp+cursor;
		}else if (ns6){document.getElementById("typeTxtIE").innerHTML = temp+cursor;
		}            
		setTimeout("animate()",50)
	}

// -->

