﻿var gAutoPrint = true;

function processPrint(printMe) {

   
    if (document.getElementById != null) {

        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</HE' + 'AD>\n<BODY id="printBody" onLoad="resizeCupons()" style="background:none;">\n';

        var printReadyElem = document.getElementById(printMe);

        if (printReadyElem != null) {
            html += printReadyElem.innerHTML;
        }

        else {

            alert("Error, no contents.");

            return;

        }

        html += '\n</BO' + 'DY>\n</HT' + 'ML>';

        var printWin = window.open("", "");

        printWin.document.open();

        printWin.document.write(html);
        
        printWin.document.close();

        if (gAutoPrint) printWin.print();
        
    } else alert("Browser not supported.");



}

function resizeCupons() {
    if ($.browser.msie) {
        $('#printBody #printHolderInner div div.rewardItem').css({ width: "312px", height: "153px", float: "left", margin: "5px", padding: "20px 10px", "background-position": "center center" });
        $('#printBody #printHolderInner div div.rewardItem h3').css({ float: "left", margin: "10px;" });
        $('#printBody #printHolderInner div div.rewardItem p').css({ float: "left", margin: "5px;" });
        $('#printBody #printHolderInner').css({ width: "1085px" });
    }
}
