﻿// Dimensionamento tabella masterpage
function getSize() {
    var _w = document.body.clientWidth;
//    var _h = screen.height; //.body.clientHeight;
//    
//    var _htr = dividi(_h, 2);

//    //alert(dividi(_h,2));
//    
//    // oggetto tabella
//    var _table = document.getElementById("ctl00_tblMaster");
//    var _tr1 = document.getElementById("ctl00_tr1");
//    var _tr2 = document.getElementById("ctl00_tr2");

//    // dimensiono tabella
//    _table.width = _w + 'px';
//    _table.height = _h + 'px';
//    
//     //dimensiono righe
//     _tr1.style.height = (_htr - 100) + "px";
//     _tr2.style.height = (_htr - 70) + "px";
    //alert(_w);
}

function dividi(x, y) {
    var z = 0;
    var i = x;
    //
    while (i >= y) {
        i = i - y;
        z++;
    }
    return z;
}
