﻿jQuery(function($) {
    $('#print-coupon').click(function() {
        var recipe = window.open('', 'RecipeWindow', 'width=680,height=400');
        var html = '';
        html = html + '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';
        html = html + '<html xmlns="http://www.w3.org/1999/xhtml">';
        html = html + '<head>';
        html = html + '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
        html = html + '<title>מבצע חנוכה ברב בריח</title>';
        html = html + '<link rel="stylesheet" type="text/css" href="css/styles.css" />';
        html = html + '</head>';
        html = html + '<body>';
        html = html + '<div style="padding:0px;">' + $('<div />').append($('#coupon-container').clone()).html() + '</div>';
        html = html + '</body>';
        html = html + '</html>';
        recipe.document.open();
        recipe.document.write(html);
        recipe.window.print();
        recipe.document.close();
        return false;
    });
});
