function expandDiv(tahw) 
{
	//alert('ok');
	what  = document.getElementById("menu_" + tahw);
	if (what.style.display == "none") 
	{
    	what.style.display = "block";
    } 
	else 
	{
    	what.style.display = "none";
	}
}