function printDiv(id){
	var a = window.open('','','width=755,height=600');
	a.document.open("text/html");
	a.document.write('<html><head>');
	a.document.write('<link href="static/style/print.css" rel="stylesheet" type="text/css" />');
	a.document.write('</head><body>');
	a.document.write(document.getElementById(id).innerHTML);
	a.document.write('</body></html>');	
	a.document.close();
	a.print();
}
