<!--
function largePh(img,w,h){

/* ウィンドウを開く位置、ウィンドウサイズを指定 */
  var ini = "";
  ini += 'top=0,left=0';
  ini += ',width='+eval(w)+',height='+eval(h)+',';
  ini += 'directories=0,toolbar=0,menubar=0,scrollbars=0,status=0,resizable=0,location=0';

/* 新ウィンドウを指定した位置に、指定サイズで開く */
  jsw=window.open('','jsw',ini);
/* 新ウィンドウにフォーカスを当てる */
  jsw.focus();

/* 新ウィンドウに書出 */
  htm  = '<html><head>';
  htm += '<meta http-equiv="Content-Type" content="text/html; charset=shift_JIS">';
  htm += '<title>設備詳細</title>';
  htm += '</head>';
  htm += '<bod' + 'y style="margin:0;padding:0;" background="'+img+'">';
  htm += '</bod'+'y></html>';
  jsw.document.write(htm);
  jsw.document.close();

}
// -->