
function mostra_nascondi(elem)
{ /*
	if ( elem != elem_tmp )
	mostra = true;
	
	elem_tmp = elem;
	div = document.getElementById(elem);
	
	if ( mostra )
	{
	div.style.visibility = 'hidden';
	div.style.display = 'none';
	mostra = false;
	}
	else
	{
	div.style.visibility = 'visible';
	div.style.display = 'block';
	mostra = true;
	}	*/
	var mostra = true;
	var elem_tmp = '';
	
	div = document.getElementById(elem);
	
	if(div.style.display==''&&div.offsetWidth!=undefined&&div.offsetHeight!=undefined)
    div.style.display = (div.offsetWidth!=0&&div.offsetHeight!=0)?'block':'none';
  div.style.display = (div.style.display==''||div.style.display=='block')?'none':'block';
}

function mostra(elem,elem2)
{
	div = document.getElementById(elem);
	
	div.style.display = 'block';
	
	document.getElementById(elem2).style.display  = 'block';
}

function nascondi_elementi(elem1,elem2)
{
	document.getElementById(elem1).style.display  = 'none';
	document.getElementById(elem2).style.display  = 'none';
}

function vecchia_chat()
{
	document.getElementById('chat_corpo').innerHTML = '<iframe src="/forum/vecchia_chat/chat_sopra.php" width="100%" border="0" height="500" marginheight="2" marginwidth="2" style="border:#DBE2ED 1px solid;border-bottom:0px"></iframe>';
	document.getElementById('scelta_chat').innerHTML = "Passa alla <a href='#chat' onclick='javascript:nuova_chat()'>nuova chat</a>";
}

function nuova_chat()
{
	document.getElementById('chat_corpo').innerHTML = 	'<iframe src="/forum/chat_ecucinando/script_nuova_chat.php" width="100%" border="0" height="500" marginheight="2" marginwidth="2" style="border:#DBE2ED 1px solid;border-bottom:0px"></iframe>';
document.getElementById('scelta_chat').innerHTML = "Se hai problemi con questa chat puoi usare la <a href='#chat' onclick='javascript:vecchia_chat()'>vecchia</a>";
}

