﻿function getElementById(id) {
    var obj = document.getElementById(cphContent + "_" + id);
    if (obj) {
        return obj;
    } else {
       return document.getElementById(id);
    }
}