function popup(url) {
  newwindow=window.open(url,'name','height=280,width=300,screenX=300,screenY=300');
  if (window.focus) {newwindow.focus()}
  return false;
}
