В строке браузера печатается название сайта + ваше сообщение. Управление дизайном --> Страницы сайта, перед тегом </head> вставляем этот код:
Code
<script language="JavaScript1.2">
var message=" - Софт. Графика. Мультимедиа. Скачать бесплатно." //Текст сообщения
var message=message+" "
i="0"
var temptitle=""
var speed="300" //Скорость печатания
function titler(){
if (!document.all&&!document.getElementById)
return
document.title=temptitle+message.charAt(i)
temptitle=temptitle+message.charAt(i)
i++
if(i==m essage.length)
{
i="0"
temptitle=" World User" //Название вашего сайта
}
setTimeout("titler()",speed)
}
window.onload=titler
</script>