function openWindow(url, width, height, misc) {
  win = window.open(url, 'win', 'width='+width+',height='+height+',alwaysRaised=yes,top=100,left=200'+misc);
  win.focus();
}

