function openWindow(url, width, height) {
  width = width || 500;
  height = height || 350;
  window.open(url, null, "height=" + height + ",width=" + width + ",status=yes,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes");
}