// JavaScript Document
function abreFloExt(url,ancho,alto,resizable){
  window.open(url,"flotante",'toolbar=no,menubar=no,location=no,directories=no,status=no,scrollbars=no,resizable=no,copyhistory=no,width='+ancho+',height='+alto+',top=20,left=100');
}

function abreFloExt2(url,ancho,alto,resizable){
    window.open(url,"flotante",'toolbar=yes,menubar=yes,location=yes,directories=yes,status=yes,scrollbars=yes,resizable=yes,copyhistory=yes,top=20,left=100');
}

function abreFloExt3(url,ancho,alto,resizable){
    window.open(url,"flotante",'toolbar=no,menubar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+ancho+',height='+alto+',top=20,left=100');
}

function abreFloExt4(url,ancho,alto,resizable){
    window.open(url,"flotante",'toolbar=yes,menubar=no,location=no,directories=no,status=yes,scrollbars=yes,resizable=yes,copyhistory=no,width='+ancho+',height='+alto+',top=20,left=100');
}

function abreFloExt4b(url,ancho,alto,resizable){
    window.open(url,"flotante_b",'toolbar=yes,menubar=no,location=no,directories=no,status=yes,scrollbars=yes,resizable=yes,copyhistory=no,width='+ancho+',height='+alto+',top=20,left=100');
}

function abreFloExt5(url,ancho,alto,resizable){
    window.open(url,"flotante",'toolbar=yes,menubar=no,location=yes,directories=no,status=yes,scrollbars=yes,resizable=yes,copyhistory=no,width='+ancho+',height='+alto+',top=20,left=100');
}

function abreFloExt5b(url,ancho,alto,resizable){
    window.open(url,"flotante_b",'toolbar=yes,menubar=no,location=yes,directories=no,status=yes,scrollbars=yes,resizable=yes,copyhistory=no,width='+ancho+',height='+alto+',top=20,left=100');
}

function abreFloExtNombre(nombre,url,ancho,alto,resizable){
    var win = window.open(url,nombre,'toolbar=no,menubar=no,location=no,directories=no,status=yes,scrollbars=yes,resizable=yes,copyhistory=no,width='+ancho+',height='+alto+',top=20,left=100');
    return(win);
}

