//////////////////////////////////////////////////////////
//	Version du 2 avril 2008. Script LondNoir
//
// 	Change la taille de la boîte des avatars
//
//					Stigmatix © 2003-2007 Stigmatix SPRL 
//////////////////////////////////////////////////////////

var boxState = 0;

function switch_box (box, text, row)
{
	if (document.getElementById)
	{
		boxObject = document.getElementById(box);
		textObject = document.getElementById(text);
		if (!boxObject || !textObject)
		{
			alert('Erreur sur la page!');
			return 0;
		}
		
		if (!boxState)
		{
			boxObject.style.height = (row * 106)+'px';
			textObject.innerHTML = '<b>(Cacher)</b>';
			boxState = 1;
		}
		else
		{
			boxObject.style.height = '102px';
			textObject.innerHTML = '<b>(Plus de choix)</b>';
			boxState = 0;
		}
	}
	else
	{
		alert('Votre navigateur est pourris!');
		return 0;
	}
}
