﻿function zoomin() {
    if (document.body.style.zoom != 0)
        document.body.style.zoom *= 1.2;
    else
        document.body.style.zoom = 1.2;
}
function zoomout() {
    if (document.body.style.zoom != 0)
        document.body.style.zoom *= 0.833;
    else
        document.body.style.zoom = 0;
}
function zoomrest() {
    if (document.body.style.zoom != 0)
        document.body.style.zoom *= 0;
    else
        document.body.style.zoom = 0;
}
var fontSize = 12;
function zoomin(e) {

    if (fontSize <= 28) {
        fontSize += 4;
        e.style.fontSize = fontSize + "px";
    }
    else
        e.style.fontSize = fontSize + "px";
}
function zoomout(e) {

    if (fontSize >= 13) {
        fontSize -= 4;
        e.style.fontSize = fontSize + "px";
    }
    else
        e.style.fontSize = fontSize + "px";
}
//function zoomin(e) {
//    if (e.style.zoom != 0)
//        e.style.zoom *= 1.2;
//    else
//        e.style.zoom = 1.2;
//}
//function zoomout(e) {
//    if (e.style.zoom != 0)
//        e.style.zoom *= 0.833;
//    else
//        e.style.zoom = 0;
//}
