function abrirR(id)
{
	ancho = 620;
	alto = 600;

	xLeft = (screen.availWidth - ancho) / 2;
	xTop = (screen.availHeight - alto) / 2;

	window.open("receta.asp?Id=" + id, "", "width=" + ancho + ", height=" + alto + ", left=" + xLeft + ", top=" + xTop + ", scrollbars=yes, status=no, toolbar=no, resizable=yes");
}
function abrirA(id)
{
	ancho = 620;
	alto = 600;

	xLeft = (screen.availWidth - ancho) / 2;
	xTop = (screen.availHeight - alto) / 2;

	window.open("alerta.asp?Id=" + id, "", "width=" + ancho + ", height=" + alto + ", left=" + xLeft + ", top=" + xTop + ", scrollbars=yes, status=no, toolbar=no, resizable=yes");
}
function abrirN(id)
{
	ancho = 620;
	alto = 600;

	xLeft = (screen.availWidth - ancho) / 2;
	xTop = (screen.availHeight - alto) / 2;

	window.open("noticia.asp?Id=" + id, "", "width=" + ancho + ", height=" + alto + ", left=" + xLeft + ", top=" + xTop + ", scrollbars=yes, status=no, toolbar=no, resizable=yes");
}