function openWindow(url, width, height) {
  w = window.open(url, "new", "width="+width+",height="+height+",left=100,top=200,location=no,menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no");
  w.focus();
}
