// JavaScript Document

function print(id_div) {

 var div;

 div = document.getElementById(id_div);
 okno = window.open("", "", "toolbar=0, location=0, resizable=1, directories=0, status=1, menubar=1, scrollbars=1, height=800, width=700, top=80, left=350");
 var html = div.innerHTML;

 html = '<html><head></head><body><form><input type="button" value="Drukuj teraz!" onclick="window.print();return false;" /></form>'+html+'</body></html>';

 okno.document.write(html);
 //okno.print();
 okno.focus();
}
