function searchform_submit()
{
		var href = '';

		var radioBtns = document.getElementsByName('tx_wfqbe_pi1[Verzeichnis]');
		for (var i=0; i < radioBtns.length; i++)
		{
				if (radioBtns[i].checked)
				{
						href += 'verzeichnis/' +  radioBtns[i].value + '/';
				}
		}
		if ((abc = document.getElementById('ABC').value) != '')
		{
				href += 'abc/' + abc + '/';
		}
		if ((stichwort = document.getElementById('STICHWORT').value) != '')
		{
				href += 'stichwort/' + stichwort + '/';
		}
		if (document.getElementById('SELECTOR') != null && (selector = document.getElementById('SELECTOR').value) != '')
		{
				href += 'selector/' + selector + '/';
		} 
		var delimiter = 'aussteller-suche/';
		if ((pos = window.location.pathname.indexOf('pid')) > 0)
		{
				delimiter = window.location.pathname.substring(pos, window.location.pathname.indexOf('/', pos + 4) + 1);
		}
		window.location.href = window.location.pathname.substring(0, window.location.pathname.lastIndexOf(delimiter) + delimiter.length) + href;
		return false;
}

function set_input(input, value)
{
	if (input == 'ABC')
	{
		clear_input('SELECTOR');
	} 
  if (document.getElementById(input) != null)
	{
		document.getElementById(input).value = value;
	}
}

function clear_input(input)
{
		set_input(input, '');
}
