//generic function to add products to the StoreExpress basket
function AddToBasket(sProductCode,sDescription,iQuantity,dblPrice, sReturnLink){
	with (document.forms[0]){
		if(ProductCode != "undefined") ProductCode.value=sProductCode; 
		if(ProductDescription != "undefined") ProductDescription.value=sDescription;
		if(ProductQuantity != "undefined") ProductQuantity.value=iQuantity;
		if(ProductPrice != "undefined") ProductPrice.value=dblPrice;
		if(ProductLink != "undefined") ProductLink.value=sReturnLink;
		submit();
	}
}