//
// Gestion du panier
//
var panier;
var conditions;

function Panier(href)
{
	wi = 485;
	he = 300;

   	if (panier == null || panier.closed)
   	{
		panier = window.open(href, 'panier', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+wi+',height='+he);
	}
	else
	{
		// panier.close ();
		// panier = window.open(href, 'panier', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+wi+',height='+he);
		panier.focus ();
		panier.location = href;
	}
}

function Conditions(href, wi, he)
{
   	if (conditions == null || conditions.closed)
   	{
		conditions = window.open(href, 'conditions', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+wi+',height='+he);
	}
	else
	{
		conditions.close ();
		// conditions = window.open(href, 'conditions', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+wi+',height='+he);
		// conditions.focus ();
		// conditions.location = href;
	}
}

function fiche (ref)
{
	top.cadre.titre.location.href='/titresLemoine/t01.html';
	top.cadre.contenu.location.href='/catalogue/rechercheFiche.html?cotage='+ref;
}
