// Web Management hideShow JavaScript

function hideShow(to_hide,to_show)
{
	to_hide_id = to_hide.split('|');
	for (var i=0; i<to_hide_id.length;i++)
	{
		document.getElementById(to_hide_id[i]).style.display = 'none';
	}
	to_show_id = to_show.split('|');
	for (var i=0; i<to_show_id.length;i++)
	{
		document.getElementById(to_show_id[i]).style.display = 'block';
	}
}
