function printSpecial() {
	//document.all.BotaoPrint.style.display = "none";
	if (document.getElementById != null) {
		var html = '<HTML>\n<HEAD>\n<link href="../css/impressao.css" rel="stylesheet" type="text/css"><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td><img src="../img/rh_impressao.gif" vspace="5"/></td></tr><td><tr height="7"><td><img src="/img/barra_imp.gif" alt="" width="100%" height="7" border="0"></td></tr></table>\n';

		document.all.linkVolta.style.display = "none";
	
		html += '\n</HE' + 'AD>\n<BODY> <br>\n';
	
		var printReadyElem = document.getElementById("printReady");
		
		if (printReadyElem != null) {
			html += printReadyElem.innerHTML;
		} else {
			alert("Não foi encontrada o corpo para impressão no seu HTML.");
			return;
		}
		
		html += '\n</BO' + 'DY>\n</HT' + 'ML>';
		html += '<br><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr height="7"><td><img src="/img/barra_imp.gif" alt="" width="100%" height="7" border="0"></td></tr></table><strong>ADP Brasil Ltda</strong><br>Fones:  BH (31) 3263.1900 • CTB (41) 3312.4700 • POA (51) 3216-3500 • RJ (21) 2123.4700 • SP (11) 3646.9000 <br>www.adp.com.br - adp@adp.com.br\n';
	
		var printWin = window.open("","printSpecial", "statusbar=no,toolbar=no,scrollbars=yes,top=50,left=50,width=450,height=400");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		document.all.linkVolta.style.display = "none";
		printWin.print();
	} else {
		alert("Desculpe, a impressão só funciona em browsers mais modernos.");
	}
}