function printMe (divId) {
w=window.open('','impressionCIS','toolbar=yes,menubar=yes,scroollbar=yes,hotkeys=yes,resizable=yes,directories=yes,status=yes,width=850,height=700');   
w.document.write('<html>')
 	w.document.write('<link rel="stylesheet" type="text/css" href="css/print.css" /><body>')
  w.document.write('<div style="margin:10px; background-color:#ffffff">'+document.getElementById(divId).innerHTML+'</div></body>')
  w.document.write('</html>')
  w.window.print();
  w.document.close();
}
