/*Show hide*/
function findElementById( elementId )
{
	var theElement = null;
	try
	{
		if( document.getElementById )
			theElement = document.getElementById( elementId );
		else
			theElement = document.all[ elementId ];
	}
	catch( e )
	{
		theElement = null;
	}
	return theElement;
}


function showTab(id)
{
	findElementById("ctn_" + id).style.display = "block";
	findElementById("tab_" + id).src = "/mony/images/misc/tab_" + id + "_on.gif";
	
	findElementById("tab_" + id).blur();
	
}

function hideTab(id)
{
	findElementById("ctn_" + id).style.display = "none";
	findElementById("tab_" + id).src = "/mony/images/misc/tab_" + id + "_off.gif";
	
}