"; var delay=100; var currentChar=1; var destination=""; function type() { if (document.getElementById) { var dest=document.getElementById(destination); if (dest) { dest.innerHTML=text.substr(0, currentChar); currentChar++ if (currentChar>text.length) { setTimeout("type()", delay); } else { setTimeout("type()", delay); } } } } function startTyping(textParam, delayParam, destinationParam) { text=textParam; delay=delayParam; currentChar=1; destination=destinationParam; type(); } // function FP_popUpMsg(msg) {//v1.0 alert(msg); } -->

...