function BoiteGoogle(id_config, colonne, position, reduite, config)
{
  this.base = Boite;
  this.base(id_config, colonne, position, reduite);
  this.config = config;
  this.refreshOnLoad = false;
}
BoiteGoogle.prototype = new Boite;

BoiteGoogle.nouvelleBoite = function(obj)
{
      new Ajax.Request('module_web/flux/ajax/ajouter.php',
	        {
                  method: 'post', 
                  postBody: 'type_boite='+GOOGLE+'&colonne='+1+'&reduite='+0,
                  onSuccess: BoiteGoogle.ecrireNouvelleBoite
                });
}

BoiteGoogle.ecrireNouvelleBoite = function(t)
{
  Boite.ecrireNouvelleBoite(t, BoiteGoogle);
}