var rs = new rsClient('library/calcule_prix.php');

function calculePrix (id)
{
	var oQuantite = document.getElementById('quantite' + id);
	var oPrix = document.getElementById('prix' + id);

	var val = parseInt(oQuantite.value, 10);
	if (!oQuantite.value.match(/^[0-9]+$/) || val < 1)
	{
		oQuantite.value = 1;
		alert('Veuillez saisir une quantite valide.');
	}
	oPrix.innerHTML = rs.query_text('calcule_prix', 'reference', id, 'quantite', oQuantite.value);
}

function verif (id, value)
{
	var oQuantite = document.getElementById(id);
	//!oQuantite.value.match(/^[0-9]+$/) || 
	var val = parseInt(oQuantite.value, 10);
	if (!oQuantite.value.match(/^[0-9]+$/) || val < 1)
	{
		oQuantite.value = 1;
		alert('Veuillez saisir une quantité valide.');
	}
}

function changeCouleur (id)
{
	var oImg = document.getElementById('img'+ id);
	var oColoris = document.getElementById('coloris'+ id);

	oImg.src = rootpath +'/boutique/images/coloris/'+ oColoris.value +'.gif';
}

