Именно "этот скрипт" заменяет слова приветствия на любые другие ваши. Вместо Привет! (ник).
В низ:
<script> <!-- greet="свой текст (Добро пожаловать!), " str = document.getElementById("pun-status").innerHTML pos = str.indexOf("Привет") document.getElementById("pun-status").innerHTML=str.substring(0,pos)+greet+str.substring(pos+8,str.length-1) visit="свой текст-2 (Последний раз Вы здесь были)" str = document.getElementById("pun-status").innerHTML if( (pos=str.indexOf("Ваш последний визит")) != -1 ) document.getElementById("pun-status").innerHTML=str.substring(0,pos)+visit+str.substring(pos+21,str.length-1) --> </script>