Puedes controlar la impresión con CSS, ejm:
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<style media="screen">
#detalle {
display: none;
}
</style>
<style media="print">
#detalle {
display: block;
}
</style>
</head>
<body>
<div id="descripcion">
Texto visible
</div>
<div id="detalle">
Texto oculto, sólo para imprimir.
</div>
</body>
</html>
Saludos