	
	function ImprimerPage() {
		printIt();
	}

	function printIt() {

//			popup_compte = window.open('/asp/imprimer/compter_page.asp?url='+ document.URL ,'_count','width=1,height=1');
//			popup_compte.close();

		if (document.all) {

			printText = contenu.innerHTML;
			popup_resultat = window.open('','_print','width=550,height=400, scrollbars=yes, resizable=yes');
			popup_resultat.document.open();
			popup_resultat.document.writeln('<html><body><head><title>Maladie Veineuse</title>');
			popup_resultat.document.writeln('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><LINK REL="STYLESHEET" href="/css/global.css" TYPE="text/css"></HEAD><BODY BGCOLOR=#FFFFFF>');
			popup_resultat.document.writeln('<TABLE BORDER=0 CELLPADDING=5 CELLSPACING=5><TR><TD WIDTH=483 NOWRAP> ');
			popup_resultat.document.writeln('<p align="right"><a href="javascript:void(null)" onClick=window.print() style=\"font-family:Arial, Helvetica, sans-serif;color:#002A5C;font-size:12px;font-weight:bold;\">Imprimer</a></p>');
			popup_resultat.document.writeln('<p>');
			popup_resultat.document.writeln(printText);
			popup_resultat.document.writeln('</p>');
				
			popup_resultat.document.writeln('</td></td></tr></table></body></html>');
			popup_resultat.document.close();
		} 

		if (document.layers) { 
			if (document.URL.indexOf("/html/") == -1 )  {
				window.print();
			} else {
				// popup_resultat = window.open('/asp/imprimer/imprimer_page.asp','_print','scrollbars=yes, resizable=yes,width=700,height=500');
				// popup_resultat.print();
				window.print();

			}
		}
	}