﻿function ajouterCart(rowIndex, fkProduit)
{
	var strURL = window.location.toString();

	if ((rowIndex != -1) && (fkProduit != -1))
	{
	    //Products list mode
	    strURL = strURL + '&qnt=' + document.getElementById('grdListeProduits__ctl' + rowIndex.toString() + '_prd4_txtQNT').value + '&catop=1&p=' + fkProduit.toString();
	}
	else
	{
	    //Product detail mode
		strURL = strURL + '&qnt=' + document.getElementById('objAfficherPage__ctl0_objProduit_txtQnt').value + '&catop=1';
	}
	
	window.location = strURL;
}
