// JavaScript Document
function Acheter(pForm, iId, pformdetail,iNom,iPrix)
{
	document.SHOP.id.value = iId;

	document.SHOP.QUANTITY2.value = pForm.value;
	document.SHOP.NOM.value = iNom;
	document.SHOP.PRIX.value = iPrix;
	document.SHOP.submit();
}

function Modify(pForm, iId, iValue) 
{
	iOldQuantity = pForm.value;
	iQuantity = iValue + parseInt(iOldQuantity);
	if (iQuantity <1) 
	{
		iQuantity = 1
	}
	pForm.value = iQuantity;
	document.SHOP.id.value = iId;
	document.SHOP.QUANTITY2.value = iQuantity;
}
function popUp(strURL,strType,strHeight,strWidth) {
var strOptions="";
if (strType=="console") strOptions="scrollbars,resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="directories=no,location=no,status=no,toolbar=no,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="toolbar,menubar,scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
window.open(strURL, 'newWin', strOptions);
}
