/*
 * フォーカス取得時の処理（IME=使用）
 */
function focusCmnOn(obj) {
    obj.style.imeMode='active';
    obj.style.backgroundColor='#ffff88';
    obj.select();
}
/*
 * フォーカス取得時の処理（IME=未使用）
 */
function focusCmnOff(obj) {
    obj.style.imeMode='inactive';
    obj.style.backgroundColor='#ffff88';
    obj.select();
}
/*
 * フォーカス取得時の処理（IME=使用不可）
 */
function focusCmnNo(obj) {
    obj.style.imeMode='disabled';
    obj.style.backgroundColor='#ffff88';
    obj.select();
}
/*
 * フォーカス取得時の処理
 */
function focusCmnSlct(obj) {
    obj.style.backgroundColor='#ffff88';
}
/*
 * フォーカス喪失時の処理
 */
function blurCmn(obj){
    obj.style.backgroundColor='#ffffff';
}
/*
 * フォーカス取得時の処理（IME=使用不可）バックカラー変更無し
 */
function focusCmnNoBgno(obj) {
    obj.style.imeMode='disabled';
    obj.select();
}

