function noticias(encabezado, noticia)
{
ventanaDeInfo=window.open("", "", "toolbar=no, menubar=no, scrollbars=yes, resizable=yes");
ventanaDeInfo.document.write("<head><title>INFORMACIÓN</TITLE></HEAD>");
ventanaDeInfo.document.write("<body bgcolor=#ffffff text=black>");
ventanaDeInfo.document.write("<img src='http://www.entornomedico.org/noticias/imagenes/titulo.jpg' width='512' height='70' border='0'>");
ventanaDeInfo.document.write(encabezado);
ventanaDeInfo.document.write(noticia);
ventanaDeInfo.document.write("<center><font face='Arial, Helvetica, sans-serif' size='2'><p>Para imprimir este texto, haga click en el botón de Imprimir.<br><form><input type=button value='Imprimir' onClick='window.print()'></form><br>De click en el botón de Cerrar despues de leer la información.<br><form><input type=button value='Cerrar' onClick='window.close()'></form></p></center></font>");
}
