function pokaz(co,czy) 
{ 
var tekst="";
var tekst_akty=document.search.query.value;
var tekst_serwis=document.serwis.query_1.value;
var tekst_oferta=document.szukajForm.PS14.value;

if (tekst_akty!="")
{
tekst_serwis="";
tekst_oferta="";
tekst=tekst_akty;
}

if (tekst_serwis!="")
{
tekst_akty="";
tekst_oferta="";

tekst=tekst_serwis;
}

if (tekst_oferta!="")
{
tekst_serwis="";
tekst_akty="";

tekst=tekst_oferta;
}


if(co=="akty")
{
document.search.query.value = tekst;
}

if(co=="serwis")
{
document.serwis.query_1.value = tekst;
}

if(co=="oferta")
{
document.szukajForm.PS14.value = tekst;
}

if(czy!=1) 
{ 
document.getElementById('serwis').style.display='none'; 
document.getElementById('akty').style.display='none'; 
document.getElementById('oferta').style.display='none'; 

} 

with(document.getElementById(co).style) 
{ 
display='block'; 
} 



}
