function Imprimir(){
	var DataImprimir = document.getElementById('contenido_imprimible').innerHTML;
	var html='<html>\n<head>\n<link href="http:\/\/dattatec.com\/sp\/salida_imprimir.css" rel="stylesheet" type="text\/css" />\n<\/head>\n<body onload="focus();print();" style="font-family:Arial, Verdana, Helvetica, sans-serif;">\n<div id="contenido_if">\n';
	html+=DataImprimir;
	html+='\n<\/div>\n<\/body>\n<\/html>'
	parent.print_buffer.document.write(html);
	parent.print_buffer.document.close();
}