

function abreWin(laURL, nombre, otros, ancho, alto, centrado) { //v3.0
  if(window.screen)if(centrado)if(centrado=="true"){
    var izda = (screen.width-ancho)/2;
    var arriba = (screen.height-alto)/2;
    otros+=(otros!='')?',':'';
    otros+=',left='+izda+',top='+arriba;
  }
  window.open(laURL,nombre,otros+((otros!='')?',':'')+'width='+ancho+',height='+alto);
}

