// <!--

function open_window (url,name,properties) {
  popupWin = window.open (url,name,properties);
  popupWin.opener.top.name="opener";
  popupWin.focus();
}

function open_telephone() {
open_window("telephones.html",'1',
  'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resisizable=no,width=350,height=350');
}

//-->

