﻿function GetYear() {

    today = new Date();
    return today.getFullYear();

}

function openph(url) {
    var url1 = url;
    window.open(url1, "", "top=0,left=0,menubar=no,toolbar=no,location=no,resizable=no,height=170,width=315,status=no,scrollbars=no,maximize=null,resizable=0,titlebar=no;");
}


var min = 8;
var max = 18;
function increaseFontSize() {
    var p = document.getElementById('adminData');
        if (p.style.fontSize) { var s = parseInt(p.style.fontSize.replace("px", "")); } 
        else { var s = 12; }
        if (s != max) { s += 1; }
        p.style.fontSize = s + "px";
}
function decreaseFontSize() {
    var p = document.getElementById('adminData');
        if (p.style.fontSize) 
        { var s = parseInt(p.style.fontSize.replace("px", "")); } 
        else 
        { var s = 12; }

        if (s != min) { s -= 1; }
        p.style.fontSize = s + "px";
}
