function janela(name, link, W, H) {
  leftpos = (screen.width)?(screen.width-W)/2:100;
  toppos = (screen.height)?(screen.height-H)/2:100;
  win = window.open(link, name,'toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=no,resizable=0,menubar=no,width='+W+',height='+H+',fullscreen=no');
  win.focus();
  win.moveTo(leftpos, toppos);
}

function janela2(name, link, W, H) {
  leftpos = (screen.width)?(screen.width-W)/2:100;
  toppos = (screen.height)?(screen.height-H)/2:100;
  win = window.open(link, name,'toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=1,menubar=no,width='+W+',height='+H+',fullscreen=no');
  win.focus();
  win.moveTo(leftpos, toppos);
}

function janela_imp(name, link, W, H) {
  leftpos = (screen.width)?(screen.width-W)/2:100;
  toppos = (screen.height)?(screen.height-H)/2:100;
  win = window.open(link, name,'toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=0,width='+W+',height='+H+',fullscreen=no');
  win.focus();
  win.moveTo(leftpos, toppos);
}

function janela_sel(name, link, W, H) {
  leftpos = (screen.width)?(screen.width-W)/2:100;
  toppos = (screen.height)?(screen.height-H)/2:100;
  win = window.open(link, name);
  win.focus();
  win.moveTo(leftpos, toppos);
}