﻿

$(document).ready(function () {
    $("#btnPrint").click(function () {
        $('#content_container').printElement();
    });
});

function setFontSize(sz) {
    var min = 10;
    var max = 18;
    var bodyFontsize = $("body").css("font-size").slice(0, -2);
    var tagDiv = document.getElementById('content_container');

    //alert("bodyFontsize= " + bodyFontsize);

    if (sz != "s") {
        if (bodyFontsize != max) {
            bodyFontsize++; //= 1;
        }
    } else {
        if (bodyFontsize != min) {
            bodyFontsize--; //= 1;
        }
    }

    $("body").css("font-size", bodyFontsize + "px");
    $("p").css("font-size", bodyFontsize + "px");

    //alert("bodyFontsize= " + bodyFontsize);
}

