/************************************************************
 *
 * Print Handler
 * @verion. 1.0
 *
 *
 * @copyright "Burgas Therm" Ltd.
 * @contact support@burgastherm.com
 *
 ************************************************************/




/*
 *
 * Print page content handler
 * @verion. 1.0
 *
 * @author Galin Bobev
 *
 **/

var print = false;

function processPrint(ids){
    if (document.getElementById != null)
    {
        // check
        if(document.getElementById("printing-page-open") != null)
        {
            //alert(document.);
            //window.print();
            return;
        }
        var html = '<HTML>\n <HEAD>\n';

        if (document.getElementsByTagName != null){
            var headTags = document.getElementsByTagName("head");

            if (headTags.length > 0)
            {
                html += headTags[0].innerHTML;
            }
        }

        html += '\n</HEAD>\n <BODY>\n';

        //alert(html);

        //var printReadyElem = document.getElementById("");
        html += '\n<div id="printing-page-open"> </div>';

        html += '\n<table bgcolor="#ffffff" width="690px"  cellspacing="0px" cellpadding="20px" border="0px"><tr align="center"><td>';
        html += '\n<table bgcolor="#ffffff" width="550px"  cellspacing="0px" cellpadding="0px" border="0px">';
        //
        for (var i = 0; i < ids.length; ++i) {


           var printReadyElem = document.getElementById(ids[i]);

           //alert(printReadyElem);
           //alert(printReadyElem.);
           //alert(printReadyElem.innerHTML);

           if (printReadyElem != null)
           {
               html += '\n <tr>';
                html += '\n <td>';

                html += printReadyElem.innerHTML;

                html += '\n </tr>';
                html += '\n </td>';
           }
        }
        
         html += '<table bgcolor="#ffffff" width="550px" cellspacing="0px" cellpadding="0px" border="0px">';
                  html += '  <tr>';
                       html += '<td colspan="5">';
                        html += '<hr width="540px" color="#c11005" style="padding-top:3px;background-color:#c11005"> </hr>';
                   html += '</td>';
                   html += '</tr>';
                   html += '<tr class="center" height="50px">';
                       html += '<td align="left">';
                            html += '<font class="copyrights" >';
                                html += 'Бургас 8000, ул. "Одрин" № 15 ет. 10 <br>';
                                html += 'тел./факс: +359 56 53 95 72, gsm: +359 887 578 334';
                           html += '</font>';
                       html += '</td>';
                   html += '</tr>';
               html += '</table>';

/*
        if (printReadyElem != null)
            html += printReadyElem.innerHTML;
        else{
            alert("Error, no contents.");

            return;
        }
*/
        html += '\n</table>';
        html += '\n</table>';
        html += '\n</BODY>\n</HTML>';

        printWin = window.open("","Print", "location=1, status=1, scrollbars=1, width=740, menubar=0,resizable=0");

        printWin.document.open();
        printWin.document.write(html);
        printWin.document.close();

        printWin.print();
    }
    else
    {
        alert("Browser not supported.");
    }
}
