function borrarNoticia()
{
	if (confirm("Seguro que quieres borrar esta noticia?"))
		return true;
	else
		return false;			
}

function modificarFoto(id1, id2, delFoto)
{
	if (document.getElementById(id1).style.display == "none")
	{
		document.getElementById(id1).style.display = "inline";
		document.getElementById(id2).style.display = "none";
		document.getElementById(delFoto).value = 0;
	}
	else
	{
		document.getElementById(id1).style.display = "none";
		document.getElementById(id2).style.display = "inline";
		document.getElementById(delFoto).value = 1;
	}
	//alert(document.getElementById(delFoto).value);
}
