function AbreFlotante (ancho,alto,res,estado,scroll,menu,tool,vinculos,direccion,full,accion)
{
var wf = "";	
wf = wf + "width=" + ancho;
wf = wf + ",height=" + alto;
wf = wf + ",resizable=" + res;	
wf = wf + ",status=" + estado;	
wf = wf + ",scrollbars=" + scroll;
wf = wf + ",menubar=" + menu;
wf = wf + ",toolbar=" + tool;
wf = wf + ",directories=" + vinculos;
wf = wf + ",location=" + direccion;
wf = wf + ",fullscreen=" + full;
window.open(accion,"banner",wf);
}