function showInfo()
{
    var width  = window.innerWidth  != undefined ? window.innerWidth  : document.body.offsetWidth;
    var height = window.innerHeight != undefined ? window.innerHeight : document.body.offsetHeight;
    $.ajax(
    {	type: "POST", url: "/stats.php", data: "dbid="+dbid+"&sid="+sid+"&task=onloadAjax&sessiondid="+sessid+"&screen="+screen.width+"x"+screen.height+"x"+screen.colorDepth+"&browser="+width+"x"+height,
        success: function(thissessionid) { var thisId = thissessionid; }
    });
}

function showInfoR()
{
    var width  = window.innerWidth  != undefined ? window.innerWidth  : document.body.offsetWidth;
    var height = window.innerHeight != undefined ? window.innerHeight : document.body.offsetHeight;
    document.getElementById("browserw").innerHTML = width;
    document.getElementById("browserh").innerHTML = height;
}

$(document).ready( function ()
{
    showInfo();
});
