<!--
var msg = "********************************** DH GRAFIKA *****************************";
var pos = 0;
var showmsg = true;
function ScrollMessage() {
if (!showmsg) {
window.setTimeout("ScrollMessage()",1500);
showmsg = true;
return;}
window.status = msg.substring(pos, msg.length) + msg.substring(0, pos);
pos++;
if (pos > msg.length) pos = 0;
window.setTimeout("ScrollMessage()",200);}
ScrollMessage();
function INT(text) {
showmsg = false;
window.status = text;}
// -->
