function do_search(forma,lang)
{
	var query = forma.qx.value.replace(/[\s]+/g, "+");
	if(query != '')
	{
		location.href = "/find-" + lang + "/" + query;
	}
	return false;
}

function vojid()
{
	//
}

function obj_visible(el)
{
	var obj = document.getElementById(el);
	if (obj.style.display == 'none')
	{
		obj.style.display = '';
	} else
	{
		obj.style.display = 'none';
	}
}
