Quitar el botón de impresión de la copia impresa

Con referencia aeste enlace yesta, Estoy imprimiendo un informe usando javascript como

 <!DOCTYPE html>
<html>
<head>
<script>
function printpage()
{
var data = 'Sample Report<br />Sample Report<br />Sample Report<br />';
    var data = data+'<br/><button onclick="window.print()">Print the Report</button>';       
    myWindow=window.open('','','width=800,height=600');
    myWindow.innerWidth = screen.width;
    myWindow.innerHeight = screen.height;
    myWindow.screenX = 0;
    myWindow.screenY = 0;
    myWindow.document.write(data);
    myWindow.focus();
}
</script>
</head>
<body>

<input type="button" value="Print Preview" onclick="printpage()" />

</body>
</html>

Pero después de imprimir, el botón de impresión aún permanece en la copia impresa. Entonces, ¿cómo ocultar el botón de impresión en una copia impresa al imprimir utilizando la función anterior?

Respuestas a la pregunta(2)

Su respuesta a la pregunta