var gAutoPrint = true;
function printSpecial()
{
	if (document.getElementById != 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</HE' + 'AD>\n<BODY>\n';

		var printReadyElem = document.getElementById("printReady");

		if (printReadyElem != null)
		{
			html += printReadyElem.innerHTML;
		}
		else
		{
			alert("Il n'y a pas de section imprimable dans ce document.");
			return;
		}

		html += '\n</BO' + 'DY>\n</HT' + 'ML>';

		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
	}
	else
	{
		alert("Cette fonction n'est disponible que dans les fureteurs moderne.");
	}
}

function pieddepage()
{
	document.write("<CENTER><P><HR WIDTH=\"60%\"><FONT SIZE=\"1\">");
	document.write("Modifi&eacute; : " + document.lastModified);
	document.write("<BR><A target=\"Validate\" HREF=\"http://jigsaw.w3.org/css-validator/validator?uri=http://pages.videotron.com/gravelin/styledebase.css\">");
	document.write("<IMG  ALT=\"Valid CSS\" SRC=\"w3ccss.gif\">");
	document.write("Ce document est valide conform&eacute;ment aux recommandations</A>");
	document.write("<A target=\"Validate\" HREF=\"http://www.w3.org/TR/REC-CSS2/\">&nbsp;CSS et HTML 4.01&nbsp;</A>");
	document.write("<A target=\"Validate\" HREF=\"http://validator.w3.org/check?uri=referer\"><img src=\"http://www.w3.org/Icons/valid-html401\" ALT=\"Valid HTML 4.01 Transitional\" height=\"31\" width=\"88\"></A>");
	document.write("</FONT></P></CENTER>");
} 
