function myMakeVisibleHiddenFunc(someVarComing)
{
		var theDiv = document.getElementById('contentHoldingDiv');
		var theDiv2 = document.getElementById('contentHoldingDiv2');
		var theDiv3 = document.getElementById('contentHoldingDiv3');
		var theDiv4 = document.getElementById('contentHoldingDiv4');
	if(someVarComing == '0')
	{
		theDiv.style.zIndex = '3';
		theDiv2.style.zIndex = '4';
		theDiv3.style.zIndex = '-1';
		theDiv4.style.zIndex = '-1';
	}
	else if(someVarComing == '1')
	{
		theDiv.style.zIndex = '4';
		theDiv2.style.zIndex = '-1';
		theDiv3.style.zIndex = '-1';
		theDiv4.style.zIndex = '-1';		
	}
	else if(someVarComing == '2')
	{
		theDiv.style.zIndex = '-1';
		theDiv2.style.zIndex = '4';
		theDiv3.style.zIndex = '-1';
		theDiv4.style.zIndex = '-1';		
	}
	else if(someVarComing == '3')
	{
		theDiv.style.zIndex = '-1';
		theDiv2.style.zIndex = '-1';
		theDiv3.style.zIndex = '4';
		theDiv4.style.zIndex = '-1';		
	}
	else if(someVarComing == '4')
	{
		theDiv.style.zIndex = '-1';
		theDiv2.style.zIndex = '-1';
		theDiv3.style.zIndex = '-1';
		theDiv4.style.zIndex = '4';		
	}
	else if(someVarComing == '5')
	{
		theDiv.style.zIndex = '-1';
		theDiv2.style.zIndex = '-1';
		theDiv3.style.zIndex = '-1';
		theDiv4.style.zIndex = '-1';		
	}
	else
	{
		theDiv.style.zIndex = '0';
		theDiv2.style.zIndex = '0';
		theDiv3.style.zIndex = '0';
		theDiv4.style.zIndex = '0';		
	}
}