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

