function imprimir() {
	var ventana = window.open("","","");
	var contenido = "<html><head><link rel='StyleSheet' href='/css/vernota.css' media='print' type='text/css' /><link rel='StyleSheet' href='css/vernota.css' media='screen' type='text/css' /><title>ANB :: Agencia de Noticias Bariloche</title><style type='text/css'>body { font-family:Arial, Helvetica, sans-serif; font-size:12px;} .nottitulo {padding:2px 0px 5px 0px; line-height:28px; font-weight:bold; font-size:23px; color:#193B61;} .notbajada {font-size:13px; font-weight:bold;  margin: 5px 0px 5px 0px} .notvolanta {font-size:12px; font-weight:normal; font-style:italic} .noticia h2 {font-size:12px; font-weight:normal} .noticia img {border: 1px solid #CCCCCC} .noticia h3 {font-size: 12px;} .noticia p {font-weight:normal; text-align:left; margin: 6px 0px 0px 0px} </style></head><body onload='window.print();window.close();'><img src='imagen/encabezado.jpg' />";
	contenido = contenido + document.getElementById('titulos').innerHTML +  document.getElementById('nota').innerHTML + "</body></html>";
	ventana.document.open();
	ventana.document.write(contenido);
	ventana.document.close();
}
function aumentar() {
texto=parseInt(document.getElementById('textovernota').style.fontSize.replace("px",""));
	if (texto<15) {
		document.getElementById('textovernota').style.fontSize=(texto+1)+"px";
		document.getElementById('bajvernota').style.fontSize=(texto+1)+"px";
		document.getElementById('volnota').style.fontSize=(texto+1)+"px";
		document.getElementById('titvernota').style.fontSize=(texto+12)+"px";
	}
}

function disminuir() {
texto=parseInt(document.getElementById('textovernota').style.fontSize.replace("px",""));
	if (texto>10) {
		document.getElementById('textovernota').style.fontSize=(texto-1)+"px";
		document.getElementById('bajvernota').style.fontSize=(texto-1)+"px";
		document.getElementById('volnota').style.fontSize=(texto-1)+"px";
		document.getElementById('titvernota').style.fontSize=(texto+10)+"px";
	}
}