var jwd_box_id = 'jwd_search_box';
var jwd_bg_url = 'http://www.scn-net.ne.jp/jwd_img/jwd-yst-logo.jpg';
var isMSIE = /*@cc_on!@*/0;

    jwd_yst_bgcon(2);

if (document.compatMode == 'CSS1Compat') {
// 標準モード
	document.getElementById(jwd_box_id).style.height='12px';
} else {
// 互換モード
	document.getElementById(jwd_box_id).style.height='20px';
}

function jwd_yst_bgcon(mod){
    switch(mod){
        case 0:
            document.getElementById(jwd_box_id).style.backgroundImage='none';
            break;
        case 1:
            document.getElementById(jwd_box_id).style.backgroundImage='url('+jwd_bg_url+')';
            break;
        case 2:
            if(document.getElementById(jwd_box_id).value==''){
                jwd_yst_bgcon(1);
            }else{
                jwd_yst_bgcon(0);
				document.getElementById(jwd_box_id).focus();
            }
            break;
  }
}
