	<!--// CHANGE THESE TO ALTER THE SCROLL SPEED

	ScrollSpeed = 120;  // milliseconds between scrolls

	ScrollChars = 1;    // chars scrolled per time period

	function SetupTicker() {

	// add space to the left of the message

 	 msg = "  ";

 	 // PUT YOUR MESSAGE HERE, USE += TO ADD THEM TOGETHER

 	 msg += "       :: CRONICON - El Observatorio Sociopolítico Latinoamericano ::                : CRONICON - Virtual :            :: Periodismo ::        :: Web Site Oficial ::";

 	 // this starts the ticker

	RunTicker();}

	function RunTicker() {

	window.setTimeout('RunTicker()',ScrollSpeed);

	window.status = msg;

	msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);}

	// Start the ticker code

	SetupTicker();

	<!-- end -->