        function pausecomp(millis) 
        {
            var date = new Date();
            var curDate = null;
            do { curDate = new Date(); } 
            while(curDate-date < millis);
        }
       function printID(id) {
            var DocumentContainer = document.getElementById(id);
            var WindowObject = window.open('', 'PrintWindow',
            'width=750,height=650,top=50,left=50,toolbars=no,scrollbars=yes,status=no,resizable=yes');
            WindowObject.document.writeln('<html><head><title>Распечатай купон и получи скидку!</title></head><body><div style="display:none">На печать!</div>');
            WindowObject.document.writeln(DocumentContainer.innerHTML);
            WindowObject.document.writeln('</body></html>');
            WindowObject.document.close();    
            WindowObject.focus();
            pausecomp(2000);
            WindowObject.print();
            WindowObject.close();
       }
