<!--
function tekstArrayInit(){
tekst=new Array(4);
tekst[0]="UWAGA: CKP w Sanoku organizuje kursy spawalnicze";
tekst[1]="Jeżeli chcesz zdobyć zawód spawacza przyjdĽ do nas";
tekst[2]="Skontaktuj się osobi¶cie lub telefonicznie: nr.tel:(013)4632698"
tekst[3]="Skontaktuj się z nami aby poznać szczegóły";
}
function PiszText(){
tekstArrayInit();
textToWrite+=tekst[t].substring(position,position+1);
Written="<center><font size='4' color='#440000'><b>"+textToWrite+"</b></font></center>";
if (document.all){
tekstSpan.innerHTML=Written
}
else{
document.layers.tekst1Span.document.write(Written);
document.layers.tekst1Span.document.close()
}
if (position==tekst[t].length-1){
t++
t=t % 4
position=0;
textToWrite="";
speed1=1500;
}
else{
position++;
speed1=150
}
setTimeout("PiszText()",speed1)
}

function AppInit(){
	t=0;
	textLen=0;
	textToWrite="";
	position=0;
	PiszText();
}

window.onload=AppInit;
//-->// JavaScript Document

