function stopErrors() {
 return true;
}
//-->

var statovyText="Vítáme vás na internetových stránkách firmy K O L Í K ,  ";      
function zacni() {
window.status=statovyText;
statovyText=statovyText.substring(1, statovyText.length) + statovyText.substring(0, 1);
setTimeout("zacni()", 150);
}
	ScrollSpeed = 200;
	ScrollChars = 1;
	function SetupTicker() {
	msg = "                                            ~(°Ö°)~   Firma K - O - L - Í - K    ~(°Ö°)~";
	 	 	 	RunTicker();
	}
	function RunTicker() {
	window.setTimeout('RunTicker()',ScrollSpeed);
	window.status = msg;
	msg = msg.substring(ScrollChars) + msg.substring(0,ScrollChars);
	}
	SetupTicker();
