﻿function getResolution() {
    var width = screen.width;
    var height = screen.height;
    this.document.getElementById('_resolution').value = width + " x " + height;
};

addLoadEvent(getResolution);
