
// ＦＡＱ写真オープン
var remote = null;
function pwin01() {
  remote = window.open('', 'pwin01', 'width=480,height=400,scrollbars=1,resizable=yes');
  if (remote != null) {
    if (remote.opener == null) {
      remote.opener = self;
    }
    remote.location.href = 'fphoto01.html';
  }
}


// 水石サンプルオープン
var remote = null;
function sample10() {
  remote = window.open('', 'sample10', 'width=630,height=720,scrollbars=1,resizable=yes');
  if (remote != null) {
    if (remote.opener == null) {
      remote.opener = self;
    }
    remote.location.href = 'sample10.html';
  }
}


// クローズ
function WinClose(){
window.close()
　}
function wide(pp){
window.open(pp,"_self");
}


//水石名品オープン

function openWin(str)
{
 window.open(str,"page","width=700,height=700,scrollbars=no")
}


