function popClose() {
    self.close();
}

function onlyEditableNumber(obj) {
    var str = obj.value;
    str = new String(str);
    var Re = /[^0-9]/g;
    str = str.replace(Re, '');
    obj.value = str;
}
