doDrukarki = function(co)
{
    doPrint("Piekarnia - Cukiernia Raszczyk", document.getElementById(co).innerHTML);
}

doPrint = function(title, content)
{
    content = content.replace('display: none','display: block');
    
    NewWindow=window.open("", "","width=800,height=600,toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=yes,resizable=no,fullscreen=no");
    NewWindow.document.open();

    NewWindow.document.writeln("<html>\n<head>\n</head>");
    NewWindow.document.writeln("<body leftmargin=10 topmargin=10 scroll=yes style=\"background-color:#ffffff; font-family: arial; font-size: 12px; line-height: 150%;\" onload=\"print();\">");
    NewWindow.document.writeln("<title>"+ title +"</title>");
    NewWindow.document.writeln("<style>");
    NewWindow.document.writeln("img { border: none; } table { font-family: arial; font-size: 12px; line-height: 150%; }");
    NewWindow.document.writeln("</style>");
    NewWindow.document.writeln("<table width=\"100%\"><tr><td>&nbsp;</td></tr><tr><td style=\"text-align: justify;\">");
    NewWindow.document.writeln(content);    
    NewWindow.document.writeln("</td></tr></table>");
    NewWindow.document.writeln("<br><br><hr size=\"1\" color=\"#666666\" style=\"background-color: #666; width: 100%; height: 1px;\" NOSHADE>");
    NewWindow.document.writeln("<table width=\"100%\"><tr><td>&copy; Piekarnia - Cukiernia Raszczyk</td></tr></table>");
    NewWindow.document.writeln("</body>\n</html>\n");
    NewWindow.document.close();
    NewWindow.focus();
}

