var statusMsg = null;
var textMsg = null;
var veloce=140;
var startup=80;

function oneShotScroll() {
	if (statusMsg.length>1) {
    	statusMsg=statusMsg.substring(1,statusMsg.length);
    } 
	else 
	{
    	statusMsg=textMsg;
    }
    window.status=statusMsg;
    timer=window.setTimeout("oneShotScroll()" ,veloce);
}

function scrolling(millisec, numOfSpaces) {
	var t1  = "Welcome to ICINCO 2004 - ";
    var t2  = "International Conference on Informatics in Control, Automation and Robotics";
    textMsg=t1+t2;
    var spaces = "                                             ";
    for (c=0 ; c < numOfSpaces ; c++) {
    	spaces+=" ";
    }
    textMsg = spaces + textMsg;
    statusMsg = textMsg;
    var command="oneShotScroll()";
    window.status=statusMsg;
    timer=window.setTimeout(command ,veloce);
}

scrolling(10, 10);
               
function Abrir(pUrl) {
	myWin= open(pUrl, "displayWindow","status=yes,scrollbars=yes,toolbar=no,menubar=no");
}