/* auteur: Rick G. Mayer */

// Clock Globals
//////////////////////////
xtexte = new Array();

POS = 0;

function menu(npage) {
	top.document.location.href=npage;
}

// Code Pub.
/////////////////////////
function go_pub() {
	//document.pubfrm.pubbar.value = xtexte[0];
	xtexte[0]=ttext;
	scrolltext = "         |         " + xtexte[0];
	scrolltext += "                                                                                               ";
	
	if (document.getElementById('pub') != null)
	{
		document.getElementById('pub').value = scrolltext.substring(POS, scrolltext.length) + scrolltext.substring(0,POS);
		POS++;
		if (POS > scrolltext.length) POS = 0;
		window.setTimeout("go_pub()", 150);
	}
}

function start_services() {
	go_pub();
}
