function showLayer2(layerName){ 
	var e = document.getElementById(layerName);

	if (e.style.display == "none")
	{
		e.style.display = "block";
		var stop = true;

		$(function()
		{
			$('.scroll-pane3').jScrollPane({showArrows:true, scrollbarWidth:19, dragMaxHeight:15});
		});		
	}
	if (e.style.display == "block"&&!stop)
	{
		e.style.display = "none";

		$(function()
		{
			$('.scroll-pane3').jScrollPane({showArrows:true, scrollbarWidth:19, dragMaxHeight:15});
		});		
	}
	return true;
}
