// -------------------------------------------------------------------------------
// JavaScript Functions
// Copyright Property Designers Inc.
// -------------------------------------------------------------------------------

function imageSwap (path,name,ext){
  document.images[name].src = path + "/" + name + ext ;
}

function imageSwapID (path,name,ext,id){
  document.images[id].src = path + "/" + name + ext ;
}

function popup(file,name,width,height){
  var control = 'width=' + width + ',height=' + height + ',scrollbars=yes,resizable=yes' ;
  sub = window.open(file,name,control) ;
  sub.focus();

}

function ToTop(){
  window.scroll(0,0);
}


function popup_zadankai(){
  var url = 'zadankai/index.html' ;
  var name = 'ZADANKAI';
//  var control = 'width=630,height=815,toolbar=no,scrollbars=yes,resizable=yes' ;
  var control = 'width=1050,height=730,toolbar=no,scrollbars=yes,resizable=no' ;
  sub = window.open(url,name,control) ;
  sub.focus();

}

function popup_voice(){
  var url = 'voice/voice.html' ;
  var name = 'VOICE';
//  var control = 'width=630,height=815,toolbar=no,scrollbars=yes,resizable=yes' ;
  var control = 'width=1050,height=825,toolbar=no,scrollbars=yes,resizable=no' ;
  sub = window.open(url,name,control) ;
  sub.focus();

}

function popup_senmon(){
  var url = 'senmon/index.html' ;
  var name = 'SENMON';
  var control = 'width=900,height=700,location=yes,toolbar=yes,scrollbars=yes,resizable=yes' ;
  sub = window.open(url,name,control) ;
  sub.focus();

}

function popup_nosize(id,name,width,height){
  var file = 'topics/' + id + '.html';
  var control = 'width=' + width + ',height=' + height + ',toolbar=yes,scrollbars=yes,resizable=no' ;
  sub = window.open(file,name,control) ;
  sub.focus();

}


function popup_voicehtml(id){
  var file = 'text.html#' + id;
  var control = 'width=600,height=600,toolbar=yes,scrollbars=yes,resizable=no' ;
  var name = 'VOICE_HTML';
  sub = window.open(file,name,control) ;
  sub.focus();

}

function popup_about(id,dir){
  var file = 'chapter' + id + '.html';
  if(dir){
    file = dir + '/' + file;
  }
  var control = 'width=820,height=600,toolbar=yes,scrollbars=yes,resizable=no' ;
  var name = 'ABOUT';
  sub = window.open(file,name,control) ;
  sub.focus();

}


// ------------------------------------------------------------ End Script File --
