function openDetail(url, width, height) {
  window.open(url, "detail", "width=" + width + ", height=" + height + ", resizable=no, scrollbars=no");
  return false;
}
function openList(url, width, height) {
  window.open(url, "detail", "width=" + width + ", height=" + height + ", resizable=1, scrollbars=1");
  return false;
}
function openSpeciality(url, width, height) {
  window.open(url, "detail", "width=" + width + ", height=" + height + ", resizable=no, scrollbars=1");
  return false;
}