function switchSearchMethod(el)
{
	selected_mo_id = el.id;
	//First hide all the forms
	hideAll();
	//Now show just the relevant form
	show('form_' + $(el).val() + '_search');
}

function hideAll()
{
	hide('form_people_search');
	hide('form_blogs_search');
	hide('form_albums_search');
}

function hide(id)
{
	el = $$(id);
	
	if (el != null && typeof el != 'undefined')
		el.style.display = 'none';
	else
		return false;
}

function show(id)
{
	el = $$(id);
	if (el != null && typeof el != 'undefined')
		el.style.display = 'block';
	else
		return false;
}
