function carroMostrar(i_vars){
  var win = new Window({className: "alphacube",
  closable:true,
  draggable:true,
  minimizable:false,
  maximizable:false,
  title: "Carrito de compras",
  top:70, left:100, width:780, height:420,
  url: "carro.php?"+i_vars,
  showEffectOptions: {duration:1.0}})

  win.showCenter(true);
}

