function popup(url, name, width, height) {
  var myWindow = window.open(url,name,'width='+width+',height='+height+',scrollbars=yes,resizable=yes');
  if (myWindow.focus) {
    myWindow.focus()
  }
  return false;
}

