/***************************************************************AK
* print
* AK, 2010-09-17
call function:
<div id=\"printFriendly\" onclick=\"printPage()\"><img src=\"grafik/print_order.png\" border=\"0\" align=\"middle\" /> Printvenlig</div>
*****************************************************************/
        function printPage()    {
            window.print(); 
            /*var printContent = document.getElementById('contentContainer');
            var windowUrl = 'about:blank';
            var windowName = 'Print' + new Date().getTime();
            var printWindow = window.open(windowUrl, windowName, 'left=100,top=100,width=600,height=600');
                        
            printWindow.document.write('<html><head>')
            printWindow.document.write('</head>')
            printWindow.document.write('<link href="styles/style.css" rel="stylesheet" type="text/css" />')
            printWindow.document.write('<link href="styles/fonts_generelt.css" rel="stylesheet" type="text/css" />')
            printWindow.document.write('<link href="styles/product_big.css" rel="stylesheet" type="text/css" />')
            printWindow.document.write('<link href="styles/product_small.css" rel="stylesheet" type="text/css" />')
            printWindow.document.write('<link href="styles/basket_big.css" rel="stylesheet" type="text/css" />')
            printWindow.document.write('<link href="styles/basket_small.css" rel="stylesheet" type="text/css" />')
            printWindow.document.write('<link href="styles/checkout.css" rel="stylesheet" type="text/css" />')
            printWindow.document.write('<link href="styles/print.css" rel="stylesheet" type="text/css" media="all" />')
            printWindow.document.write('<body>')
            printWindow.document.write(printContent.innerHTML);
            printWindow.document.write('</body>')
            printWindow.document.write('</html>')
            printWindow.document.close();
            printWindow.focus();
            printWindow.print();
            printWindow.focus();
            printWindow.close(); 
            */
        }

