var idPrev = "";
var elmPrev = null;

// ウィンドウオープン
function openWindow(url){
  var newWindow=window.open(url,"","");
  newWindow.focus();
}

// ウィンドウクローズ
function closeImgWindow(){
  if (newWindow.document.images[0].complete) {
    newWindow.close();
  }
}

// ウィンドウオープン
function openImgWindow(img,w,h){
  if (h > 600) {
    h = 600;
  }
  var newWindow=window.open("","","width="+(w+40)+",height="+(h+50)+",left=5,top=5,scrollbars=yes,location=no,menubar=no,status=yes,resizable=yes");
  newWindow.document.open();
  newWindow.document.write("<img src='"+img+"' onClick='window.close();'>");
  newWindow.document.write("<div align='center'>※画像をクリックするとウィンドウが閉じます。</div>");
  newWindow.document.close();
  newWindow.focus();
}

// ドロップダウンメニューOPEN
function fnOpen(id){
  fnClose(idPrev);
  if (document.all.item(id) != null) {
    document.all.item(id).style.display = "block";
    idPrev = id;
  }
  window.event.srcElement.style.backgroundColor = "red";
  elmPrev = window.event.srcElement;
}

// ドロップダウンメニューCLOSE
function fnClose(id){
//alert("fnClose id.length="+id.length);
  if(id.length != 0){
    document.all.item(id).style.display = "none";
  }
  if(elmPrev != null){
    elmPrev.style.color = "white";
    elmPrev.style.backgroundColor = "#0000AA";
    elmPrev = null;
  }
}

// ウィンドウオープン
function openAsahidenki(){
//  var newWindow=window.open("http://www.yahoo.co.jp/","","");
//  newWindow.focus();
  alert("工事中です。");
}
