<!--
function ReturnObject(Id){
    if(document.layers){
        return document.layers[Id];
    }else if(document.all){
        return document.all[Id];
    }else if(document.getElementById){
        return document.getElementById(Id);
    }else{
        return false;
    }
}
function tdummy(){}

//  トリム
function trim(argValue){
    return String(argValue).replace(/^[ 　]*/gi, "").replace(/[ 　]*$/gi, "");
}
//  左トリム
function ltrim(argValue){
    return String(argValue).replace(/^[ 　]*/gi, "");
}
//  右トリム
function rtrim(argValue){
    return String(argValue).replace(/[ 　]*$/gi, "");
}
//  表示・非表示
function chgdisp(targ) {
    if (targ.style.display=='none') {
        targ.style.display = 'block';
    } else {
        targ.style.display = 'none';
    }
}
//-->
