function go()
{
ss="";
w="";
if(document.forms[0].SEARCHWojewodztwo_s.options[document.forms[0].SEARCHWojewodztwo_s.selectedIndex].value!="*")
w="[Wojewodztwo_s]="+document.forms[0].SEARCHWojewodztwo_s.options[document.forms[0].SEARCHWojewodztwo_s.selectedIndex].value;
k="";
if(document.forms[0].SEARCHkategoria_s.options[document.forms[0].SEARCHkategoria_s.selectedIndex].value!="*")
k="[kategoria_s]="+document.forms[0].SEARCHkategoria_s.options[document.forms[0].SEARCHkategoria_s.selectedIndex].value;
ss="";
if(document.forms[0].SEARCHtytul_s.value!=""){
x=document.forms[0].SEARCHtytul_s.value;
x=x.replace(/±/i,'a');
x=x.replace(/¿/i,'z');
x=x.replace(/¼/i,'z');
x=x.replace(/æ/i,'c');
x=x.replace(/ñ/i,'n');
x=x.replace(/³/i,'l');
x=x.replace(/ó/i,'o');
x=x.replace(/ê/i,'e');
ss="([tytul_s]="+x+"+or+[Name_f_p]="+x+"+or+[zakres_tem_s]="+x+")";
}
xx="";
if((ss+k+w)=="")
{
alert("Brak kryteriów wyszukiwania")
 return false;
}
else
{
if(ss!="")
xx=ss;
if(k!="")
xx=k;
if(w!="")
xx=w;
if(ss!="" & k!="")
xx=ss+"+AND+"+k;
if(ss!="" & w!="")
xx=ss+"+AND+"+w;
if( k!="" & w!="")
xx=k+"+AND+"+w;
if(ss!="" & k!="" & w!="")
xx=ss+"+AND+"+k+"+AND+"+w;

url="/szkolenia2.nsf/szkolenia?SearchView&Query="+xx+'&Start=1&SearchFuzzy=1&SearchOrder=4';
this.document.location.replace(self.location.protocol + '//' + self.location.host+url);
 return false;
}

}

