function showw(idd)
	{

		document.getElementById(idd).style.display = 'block';
		document.getElementById(idd).style.visibility = 'visible';
		if(idd.toUpperCase().indexOf('FULL') >= 0)
		{
			document.getElementById(idd).style.position  = "absolute"
			document.getElementById(idd).style.marginLeft  = "2px"
			document.getElementById(idd).style.zIndex = 1;
			fadeAll();
		
		}
		if(idd.toUpperCase().indexOf('HALF') >= 0)
		{
			unfadeAll();
		
		}
	}



	function fadeAll()
	{
		document.getElementById("topHorizLayer").style.zIndex  = 0;
		document.getElementById("topHorizLayer").style.display = 'block';
		document.getElementById("topHorizLayer").style.visibility = 'visible';

	}

	function unfadeAll()
	{
		document.getElementById("topHorizLayer").style.zIndex  = -1;

		document.getElementById("topHorizLayer").style.display = 'none';
		document.getElementById("topHorizLayer").style.visibility = 'hidden';

	}


	function hidee(idd)
	{
		if(idd.toUpperCase().indexOf('FULL') >= 0)
		{
			document.getElementById(idd).style.position  = "absolute"
			document.getElementById(idd).style.marginLeft  = "0px"
			document.getElementById(idd).style.zIndex = 0;
	
		
		}
		document.getElementById(idd).style.display = 'none';
		document.getElementById(idd).style.visibility = 'hidden';

		
}