/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function printDiv(){
  var divToPrint=document.getElementById('sisu');
  var newWin=window.open('','Print-Window','width=100,height=100');
  newWin.document.open();
  newWin.document.write('<html><body onload="window.print()">'+divToPrint.innerHTML+'</body></html>');
  newWin.document.close();
  setTimeout(function(){newWin.close();},10);
}

