	
    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>Genopole&reg;</title>');
            popup_resultat.document.writeln('<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"><LINK REL="STYLESHEET" href="/javascript/style.css" TYPE="text/css"></HEAD><BODY BGCOLOR=#FFFFFF>');
            popup_resultat.document.writeln('<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 width="483"><TR><TD WIDTH=483 NOWRAP> ');
            popup_resultat.document.writeln('<p class="textecorps" align="right"><a href="javascript:void(null)" onClick=window.print()>Imprimer! | Print!</a></p>');
                        
            popup_resultat.document.writeln(printText);            
            popup_resultat.document.writeln('</td></td></tr></table></body></html>');
            popup_resultat.document.close();
        } 

        if (document.layers) { 
            if (document.URL.indexOf("/html/") > indexOf("/") == -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();

            }
        }
    }
