// JavaScript Document
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


var lastSelected="";
function toggleButton(id_noticia)
{
	var lastElement = document.getElementById('VMspan_'+lastSelected);
	var currentElement = document.getElementById('VMspan_'+id_noticia);
	if (currentElement.innerHTML == "Cerrar")
	{
		currentElement.Src = "imagenes/vermas.gif";
		currentElement.innerHTML = "Ver m&aacute;s";	
		if (lastSelected != "" && lastSelected != id_noticia)
		{
			lastElement.Src = "imagenes/vermas.gif";
			lastElement.innerHTML = "Cerrar";	
		}
			
	} 
	else
	{
		currentElement.Src = "imagenes/vermas.gif";
		currentElement.innerHTML = "Cerrar";	
		if (lastSelected != "" && lastSelected != id_noticia)
		{
			lastElement.Src = "imagenes/vermas.gif";
			lastElement.innerHTML = "Ver m&aacute;s";	
		}					
	}
	
	lastSelected = id_noticia;
	
}