
function $(id)
{
	itm = null;

	if (document.getElementById)
	{
		itm = document.getElementById(id);
	}
	else if (document.all)
	{
		itm = document.all[id];
	}
	else if (document.layers)
	{
		itm = document.layers[id];
	} else {
		return false;
	}

	return itm;
}

function toggle_div_hide(id)
{
	if ( ! id ) return;
	
	if ( itm = $(id) )
	{
		if (itm.style.display == "none")
		{
			my_show_div(itm);
		}
		else
		{
			my_hide_div(itm);
		}
	}
}

//==========================================
// Set DIV ID to hide
//==========================================

function my_hide_div(itm)
{
	if ( ! itm ) return;	
	itm.style.display = "none";
}

//==========================================
// Set DIV ID to show
//==========================================

function my_show_div(itm)
{
	if ( ! itm ) return;	
	itm.style.display = "";
}

function el_show (id)
{
	if (!$(id)) return;
	$(id).style.display = '';
}

function el_hide (id)
{
	if (!$(id)) return;
	$(id).style.display = 'none';
}


