You should be able to do it with CSS:
Code:
@media print {
  #header {
    position: fixed;
    top: 0px;
    left: 0px;
  }
  #footer {
    position: fixed;
    bottom: 0px;
    left: 0px;
  }
}
but I don't think IE (as usual ) supports that, but I think that's how to do it in Mozilla and Opera.