function showHide(strValue)
{
	var f = document.getElementById('company');
	var p = document.getElementById('private');
	
	if(strValue == 1)
	{
		p.className = 'visible';
		f.className = 'hidden';
		document.forms["companyForm"].elements["Booker"].selectedIndex = 1;
		document.forms["privateForm"].elements["Booker"].focus();
	}
	else
	{
		f.className = 'visible';
		p.className = 'hidden';
		document.forms["privateForm"].elements["Booker"].selectedIndex = 0;
		document.forms["companyForm"].elements["Booker"].focus();
	}

	return true;
}

function doSearch()
{
	document.forms["SearchBox"].submit();
}
