var ultimaListaAbierta;
function expandMe(id) {
if(ultimaListaAbierta && ultimaListaAbierta!=id){
	document.getElementById(ultimaListaAbierta).style.display = 'none';
}
ultimaListaAbierta = id;

var e = document.getElementById(id);
if(!e.style.display)
        e.style.display='block';
else
        if(e.style.display == 'none')
                e.style.display = 'block';
        else
                e.style.display = 'none';
}

function toggleMenu(id){
	document.getElementById('toggleMenu-0').style.display = "none";
	document.getElementById('toggleMenu-1').style.display = "none";
	document.getElementById('toggleMenu-2').style.display = "none";
	document.getElementById('toggleMenu-3').style.display = "none";
	document.getElementById('toggleMenu-'+id).style.display = "block";
}

function popup(url,width,height){
		newWindow = window.open(url,"newWindow","width="+width+",height="+height);
		//newWindow.focus();
}
