// ----------------------------------------------------------------------------
// Fonction pour mettre en forme les prix avec 2 décimals
// ----------------------------------------------------------------------------

function parsePrix(str) {
	var t;
	t = str.toString().split('.');
	if(t.length>1)
	{
		if(t[1].length==1){
			return t[0]+","+t[1]+"0";		
		}else{
			return t[0]+","+t[1];
		}
	}else{
		return str+",00";
	}
}

function arrondi (nombre, nbChiffres)
{
	return parseFloat((""+nombre.toFixed(nbChiffres)).replace(/0+$/g,''));
}


function reduc_pourcent(prix, prix_promo)
{
	if(prix == 0 || prix_promo == 0)
		return 0;
	else
	{
		//return arrondi((prix_promo / prix - 1) * 100, 1);
		return Math.round((prix_promo / prix - 1) * 100);
		//return Math.round((1 - (prix_promo / prix)) * 100)
	}
}


function aff_cache(id)
{
	if(document.getElementById(id).style.display == "none")
		document.getElementById(id).style.display = "";
	else
		document.getElementById(id).style.display = "none";
}


function enroule_deroule(objet)
{
	//alert(objet.src);
	if(objet.src == "http://www.divinovin.com/images/derouler.gif")
		objet.src = "images/enrouler.gif";
	else
		objet.src = "images/derouler.gif";
}