// -------------------------------------------------------------------------------
// 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();

}







// ------------------------------------------------------------ End Script File --

