function tmt_print() {
window.print () 
}

prevWidth = 0;

function removeWidth() {
  o = document.getElementById("all");
  prevWidth = o.style.width;
  o.style.width = "auto";
}

function restoreWidth() {
  o = document.getElementById("all");
  o.style.width = prevWidth;
}

window.onbeforeprint=removeWidth;
window.onafterprint=restoreWidth;

