
function go_seek_(mode)
//szukaj - z przycisku mode==0, z radiobuttons mode=1
{

	var par=document.seeker.T1.value;
	var parr=par.trim();
	var par2=document.seeker.U1.value;

	if (parr=="" && mode==0)
		{
		alert("Proszę wpisać frazę wyszukiwania.");
		document.seeker.T1.focus();
		return;
		}

	var srt="name";
	if (document.seeker.lnk_sra[0].checked==true)
		{var srt="id";}

	if (parr=="" && par2!="" && mode==1)
		{
		var surl="redir.php?id=2800&grlimit="+par2+"&sort="+srt;		
		document.location=surl;
		return;
		}
	var surl="redir.php?id=2800&seekv="+parr+"&sort="+srt;
	document.location=surl;
}