﻿function Common() {
}

Common.getElementById = function(id) {
    return document.all ? document.all[id] : document.getElementById(id);
}