function printSpecial(message){
	
	if (document.getElementById("contenu") != null){
		var html = '<html>\n<head>\n';

		if (document.getElementsByTagName != null){
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0)
				html += headTags[0].innerHTML;
		}

		html += '\n</head>\n<body style="background-image:none;" onload="window.print()">\n';
		
		html += document.getElementById("contenu").innerHTML;

		html += '\n</body>\n</html>';

		var printWin = window.open("", "printingWindow", "width="+document.getElementById("contenu").clientWidth+",toolbar=no,status=no, menubar=no, scrollbars=yes, resizable=yes,menubar=yes");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		printWin.focus();
	}
	else{
		alert(message);
	}
}
