<!--
function inner_height (factor)
{
    if (document.all) // ie
        return (document.body.clientHeight + factor);
    else if (document.getElementById) //dom
        return (window.innerHeight + factor)
    else
        return (0);
}

function inner_width (factor)
{
    var width = 0;
        if (window.innerWidth)
        {
            width = window.innerWidth;
        }
        else if (document.getElementsByTagName)
        {
            var html = document.getElementsByTagName('html');
            if (html[0].offsetWidth)
            {
                width = html[0].offsetWidth;
            }
        }
        return width;
}

function ssize(site) {
  var temp = inner_height(0);
  var temp2 = inner_width(0);
  var t3 = '<img width="100" height="2" src="/utils/livetrace/image.php?w=' + temp2 + '&h=' + temp + '&site=' + site +'">';
  return (t3);
}

-->
