	<!--
		function generatePrint() {
			if (document.getElementById != null) {
				var theDate  = new Date ();
				var theDay   = theDate.getDate();
				var theMonth = theDate.getMonth() + 1;
				var theYear  = theDate.getFullYear();

					var theAddress = '<span class="address">24, rue Denis Netgen<br />L-3858 Schifflange<br /> tél :  +352 26 54 00 - 57<br />fax : +352 26 54 00 - 58</span>';

				var html = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">';
				html += '\n<ht' + 'ml>';
				html += '\n<he' + 'ad>';
				html += '\n<ti' + 'tle>' + 'Centre de Formation Professionnelle Continue Dr Robert Widong' + '</ti' + 'tle>';
				html += '\n<me' + 'ta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">';
				html += '\n<li' + 'nk href="/print.css" rel="stylesheet" type="text/css">';
				html += '\n</he' + 'ad>';
				html += '\n<bo' + 'dy>';
				html += '\n<ta' + 'ble width="90%" align="center">';
				html += '\n<t' + 'r>';
				html += '\n<t' + 'd rowspan="2">';
				html += '\n<img src="/images/print/logo.gif" height="90" width="381" hspace="10" vspace="5" alt="Logo CFPC Dr. Robert Widong">';
				html += '\n</t' + 'd>';
				html += '\n<t' + 'd valign="top">';
				html += '\n' + theAddress;
				html += '\n</t' + 'd>';
				html += '\n</t' + 'r>';
				html += '\n<t' + 'r>';
				html += '\n<t' + 'd valign="bottom">' + theDay + '.' + theMonth + '.' + theYear + '</t' + 'd>';
				html += '\n</t' + 'r>';
				html += '\n</ta' + 'ble>';
				html += '\n<hr width="90%">';
				html += '\n<ta' + 'ble width="90%" align="center">';
				html += '\n<t' + 'r>';
				html += '\n<t' + 'd>';

				var printReadyElem  = document.getElementById("printReady");

				if (printReadyElem != null) {
					html += printReadyElem.innerHTML;
				} else {
					alert("Could not find the printReady section in the HTML");
					return;
				}

				html += '\n</t' + 'd>';
				html += '\n</t' + 'r>';
				html += '\n</ta' + 'ble>';
				html += '\n<hr width="90%">';
				html += '\n<p style="text-align:center;">&copy; Copyright ' + '2006' + ' by CFPC Dr. Robert Widong (www.widong.lu)</p>';
				html += '\n</bo' + 'dy>\n</ht' + 'ml>';

				var printWin = window.open("","generatePrint");
				printWin.document.open();
				printWin.document.write(html);
				printWin.document.close();
				// printWin.print();
			} else {
				alert("Sorry, the print ready feature is only available in modern browsers.");
			}
		}

		function newImage(arg) {
			if (document.images) {
				var rslt = new Image();
				rslt.src = arg;
				return rslt;
			}
		}

		function changeImages() {
			if (document.images && (preloadFlag == true)) {
				for (var i=0; i<changeImages.arguments.length; i+=2) {
					document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
				}
			}
		}

		function changeLink() {
			document.anchors.namedItem(changeLink.arguments[0]).className = changeLink.arguments[1];
		}

		var preloadFlag = false;
		function preloadImages() {
			if (document.images) {
				var arrow_l_over = newImage("mmp/graphics/common/arrow_l_over.gif");
				var arrow_r_over = newImage("mmp/graphics/common/arrow_r_over.gif");
				var arrow_t_over = newImage("mmp/graphics/common/arrow_t_over.gif");
				preloadFlag = true;
			}
		}
	// -->
