
var style2;
var tabella;
var intro = true;


function MostraTesto(whichLayer)
{
	var immagine;
	if (document.getElementById)
	{	
		// this is the way the standards work
		style2 = document.getElementById(whichLayer + 'TXT').style;
		immagine = document.getElementById(whichLayer);
	}
	else if (document.all)
	{	
		// this is the way old msie versions work
		style2 = document.all[whichLayer + 'TXT'].style;
		immagine = document.all[whichLayer];
	}
	else if (document.layers)
	{	
		// this is the way nn4 works
		style2 = document.layers[whichLayer + 'TXT'].style;
		immagine = document.layers[whichLayer];
	}			
		
	// Scambia visibilità		
	if (style2.display == "none")
	{
		immagine.src = "http://www.playerslair.com/forum/contrai.gif";
		style2.display = "block";
	}	
	else
	{
		immagine.src = "http://www.playerslair.com/forum/espandi.gif";
		style2.display = "none";
	}
}



function MostraTestoXLAN(whichLayer)
{	
	
	if (intro)
	{
		intro = false;
		MostraTestoXLAN('home');
	}

	if (style2 != null)
	{
		style2.display = "none";
	}
	if (document.getElementById)
	{	
		// this is the way the standards work
		style2 = document.getElementById(whichLayer + 'TXT').style;
	}
	else if (document.all)
	{	
		// this is the way old msie versions work
		style2 = document.all[whichLayer + 'TXT'].style;
	}
	else if (document.layers)
	{	
		// this is the way nn4 works
		style2 = document.layers[whichLayer + 'TXT'].style;
	}			
		
	style2.display = "block";

		
	// setta background
	if (tabella == null)
	{
		if (document.getElementById)
		{	
			// this is the way the standards work
			tabella = document.getElementById('tabella').style;
		}
		else if (document.all)
		{	
			// this is the way old msie versions work
			tabella = document.all['tabella'].style;
		}
		else if (document.layers)
		{	
			// this is the way nn4 works
			tabella = document.layers['tabella'].style;
		}	
	}
	if (whichLayer != 'home')
	{
		tabella.background = "no-repeat url(http://xray.xrent.it/xlan/backgroundlogo.jpg)";
	}
	else
	{
		tabella.background = "none";
	}
}
