//abrir pagina para impressao de noticia
function abreImpressao(URL) {
	var width = 700;
	var height = 500;
	var left = 0;
	var top = 0;
	window.open(URL, null, 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=yes, resizable=yes, fullscreen=no');
}

function DoPrinting() {
	if (!window.print){
		alert("Use o Netscape ou Internet Explorer \n nas versões 4.0 ou superior!")
		return
	}
	window.print()
}
