// <![CDATA[

function xxx()
{
alert('www');
}


var x = 1;
var schowane = true;
var pozycja = 150;

function xxx()
{
alert("www");
}

function fun4(el,m_start,m_finish)
{
	if (m_start <= m_finish && x==0)
	{
		pozycja = m_start;
		el.style.top = ""+m_start+"px";
		m_start+=10;
		setTimeout("fun4(el,"+m_start+","+m_finish+");",1,"JAVASCRIPT");
	}
}

function fun5(el,m_start,m_finish)
{
	if (m_start > m_finish && x==1)
	{
		pozycja = m_start;
		el.style.top = ""+m_start+"px";
		m_start-=10;
		setTimeout("fun5(el,"+m_start+","+m_finish+");",2,"JAVASCRIPT");
	}
}
function ukryj()
{   
   x=1;
   el = document.getElementById('sezony');
   setTimeout("fun5(el,"+pozycja+",140);",200,"JAVASCRIPT");
}
function pokaz()
{
    x = 0;
    el = document.getElementById('sezony');
    setTimeout("fun4(el,"+pozycja+",220);",1,"JAVASCRIPT");
}
function pokaz2(nr)
{
    if (nr==1)
       el = document.getElementById('lata70');
    else if (nr==2)
       el = document.getElementById('lata80');
    else if (nr==3)
       el = document.getElementById('lata90');
    else
       el = document.getElementById('lata00');

    el.style.visibility = 'visible';
    pokaz();
}
function ukryj2(nr)
{
    if (nr==1)
       el = document.getElementById('lata70');
    else if (nr==2)
       el = document.getElementById('lata80');
    else if (nr==3)
       el = document.getElementById('lata90');
    else
       el = document.getElementById('lata00');

    el.style.visibility = 'hidden';
    ukryj();
}
// ]]>
