<html><head><script type="text/javascript"><!--

get_loc = function() {
    var b = document.getElementsByTagName('body')[0];
    var t = '-video_size ' + window.outerWidth;
    t += 'x' + window.outerHeight;
    t += ' -offset_x ' + window.screenX;
    t += ' -offset_y ' + window.screenY;
    b.textContent = t;
    b.style.fontFamily = 'monospace';
}

window.onload = function() {
    var tid = setInterval(get_loc, 100);
}

//--></script></head><body></body></html>