function new_win1(){/*/// 採用情報 ///*/
window.open("popup/shop_recruit.html","","width=700, height=800, scrollbars=yes");
}

function new_win2(){/*/// クーポン ///*/
window.open("popup/shop_coupon.html","","width=700, height=520, scrollbars=yes");
}

function new_win3(){/*/// クーポンを携帯に送る ///*/
window.open("popup/shop_okuru.html","","width=700, height=520, scrollbars=yes");
}

function new_win4(){/*/// お店を友達に教える ///*/
window.open("popup/shop_okuru02.html","","width=700, height=520, scrollbars=yes");
}

function new_win5(){/*/// クーポンを携帯に送る（クーポンPOPUP内） ///*/
window.open("shop_okuru.html","","width=700, height=500, scrollbars=yes");
}

function new_win6(){/*/// クーポンを携帯に送る（top.html） ///*/
window.open("category/shop/popup/shop_okuru.html","","width=700, height=520, scrollbars=yes");
}

function new_win7(){/*///コメント送信 ///*/
window.open("pop/shop_come_pop.html","","width=700, height=500, scrollbars=yes");
}

function new_win7(){/*///コメント送信 女の子///*/
window.open("pop/girl_come_pop.html","","width=700, height=500, scrollbars=yes");
}

function new_win8(){/*///投票///*/
window.open("popup/girl_tohyo.html","","width=700, height=500, scrollbars=yes");
}

/*/// 女の子pop ///*/
function gazou(mySrc){
document.myimg.src=mySrc;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function t2_win(theURL) {
window.open(theURL, '', 'width=700, height=780, scrollbars=yes');
}



/*/////////////////////////////////////////////////////////////////////////////検索/*/

// 『全て』で開閉させるブロックの総数
var syslen = 5;

function byID(_id){
    if(document.getElementById){ return document.getElementById(_id) }
    if(document.all){ return document.all(_id); }
}

// 開閉システム プロパティ型
function OpenClose(_arg){
    var cur;
    if(cur = byID(_arg).style){
        if(cur.display != 'block'){ cur.display = 'block'; }
        else{ cur.display = 'none'; }
    }
}
function AllOC(_arg){
    if(_arg){ var val = 'block'; }else{ var val = 'none'; }
    for(i=1; i<=syslen; i++){ if(byID('sub'+i)){ byID('sub'+i).style.display = val; } }
}






/*/////////////////////////////////////////////////////////////////////////////検索/*/

engine = null;
if (window.navigator.appName == "Microsoft Internet Explorer")
{
   // これは IE ブラウザです。エンジンはどのモードで動作しますか?
   if (document.documentMode) // IE8
      engine = document.documentMode;
   else // IE 5-7
   {
      engine = 5; // 他のモードと確認されなければ Quirk モードを仮定
      if (document.compatMode)
      {
         if (document.compatMode == "CSS1Compat")
            engine = 7; // 標準モード
      }
   }
   // この時点で engine 変数にはドキュメント互換モードが格納されています。
}
