function printthispage(){
	content=document.getElementById('content').innerHTML;
  	var win=window.open("","");
	win.document.open();
	win.document.write('<html><head><title>CGI Consulting</title>');
	win.document.write('<link rel="stylesheet" type="text/css" href="reset.css" />');
	win.document.write('<link rel="stylesheet" type="text/css" href="clearfix.css" />');
	win.document.write('<link rel="stylesheet" type="text/css" href="css.css" />');
	win.document.write('</head>');
	win.document.write('<div id="content" style="margin:0;padding:10px;">');
	win.document.write(content);
	win.document.write('</div>');
	win.document.write('</body>');
	win.document.write('</html>');
	win.document.close();
	win.focus();
	win.print();
}