
function changeQuantity( xmlFilename, incOrDec ) {

	window.document.forms[0].elements['hdnXmlFilename'].value = xmlFilename;
	window.document.forms[0].elements['hdnQuantity'].value = incOrDec;

	window.document.forms[0].submit();
	return false;
}


function addKitToCart( fileUrl, netEvent ) {
	if ( window.event != null ) window.event.cancelBubble = true;
	if ( netEvent != null ) netEvent.cancelBubble = true;


	if ( window.top.layout.getPanelByName( "Panier" ) == null ) {
		window.top.layout.addPanel( new window.top.Panel("Panier", "/Basket/Basket.wp"), window.top.BorderLayout_RIGHT);
	}
	window.top.layout.getPanelByName( "Panier" ).externExpandPanel();

	document.getElementById("hdnUrlProduct").value = fileUrl;
	document.forms[ "AddProduct" ].submit();
}

