function toggle_media_tab(tab, hide_errors)
	{
	$('add').hide();
	$('manage').hide();
	if (hide_errors&&$$('div.error_wrapper')[0]) 
		{ 
		$$('div.error_wrapper')[0].remove(); 
		}

	$(tab).show();
	}

function toggle_content_tab(tab, hide_errors)
	{ 
	$('general').hide();
	$('page_content').hide();
	if (hide_errors&&$$('div.error_wrapper')[0]) 
		{ 
		$$('div.error_wrapper')[0].remove(); 
		}

	$(tab).show();
	}

// toggles button backgrounds
function h(which) 
	{ 
	which.style.backgroundColor="#e0e2e6"; 
	}

function l(which) { which.style.backgroundColor="#FAFAFA"; }

function delete_item(url, query, confirm_message)
	{
	if (confirm(confirm_message))
		{
		window.location=url+query;
		}

	return false;
	}

function toggle_text(use, use_text)
	{
	if ($(use).value==use_text)
		{
		$(use).focus(); 
		$(use).value='';
		}
	else if ($(use).value=='')
		{
		$(use).focus(); 
		$(use).value=use_text;
		}
	}

