function PrintContent()
{
	var DocumentContainer = document.getElementById("content_texte");
	var WindowObject = window.open('Print', 'PrintWindow', "width=750,height=650,top=50,left=50,toolbars=no,scrollbars=yes,status=no,resizable=yes");
	WindowObject.document.writeln(DocumentContainer.innerHTML);
	WindowObject.document.close();
	WindowObject.focus();
	WindowObject.print();
	WindowObject.close();
}

