var nomAssPanier;

function AssPanier(Id)
{
  CloseAssPanier();
	
  nomAssPanier = open("UpdatePanier.asp?ID=" + Id, "", "toolbar=0,location=0,directories=0,statusbar=0,menubar=0,scrollbars=0,resizable=0,width=300,height=120,left=" + (screen.width - 300) / 2 + ",top=" + (screen.height - 120) / 2);
  nomAssPanier.focus();

  return false;
}

function CloseAssPanier()
{
 if (nomAssPanier != null)
   nomAssPanier.close()
}

