function imprimir()
{
	var ficha = document.getElementById("noticia");
	var ventimp = window.open(' ', 'popimpr');
	ventimp.document.write("<html><head><link href='comun/estiloImprimir.css' rel='stylesheet' type='text/css'></head><body><table style='width:100%;'><tr><td><img src='img/LOGOIMPRIMIR.jpg'></td><td style='text-align:right;vertical-align:middle;font-size:11px;'><em>Noticia extra&iacute;da de http://www.asturadop.org</em></td></tr></table>" + ficha.innerHTML + "</body></html>");
	ventimp.document.close();
	ventimp.print( );
	ventimp.close();
}