function mostrarDivs()
{
	url = document.location.href ;
	partes = url.split('/');
	//alert(partes[4]);	
	document.getElementById(partes[3]).style.display='block';
}
