/* print functie kale pagina */

   function printInfo(html) {
    var console = open('','','resizable=yes,scrollbars=yes,width=480,height=320');
    function cw(text) { console.document.writeln(text);};
    console.document.open();
    cw('<html>');
    cw(' <head>');
    cw('  <title>.: print :.</title>');
    cw('  <style type="text/css">');
    cw('   body, td { margin: 24px; background: #ffffff; color: #000000; font: 12 px Verdana;} H1{font: 16 px; text-decoration: bold;} H2{font: 14 px;  text-decoration: bold;}');
    cw('  </style>');
    cw(' </head>');
    cw(' <body onload="window.print()" >');
    cw(html);
    cw(' </body>');
    cw('</html>');
    console.document.close();
    };

   function printInfos() {
    var info = document.getElementById('info').getElementsByTagName('div');
    for (var i = 0; i < info.length; i++) printInfo(info[i].innerHTML);
    };
-->
