// JScript source code
	function updateProductAcc()
		{				
				var productID = document.getElementById("products_id")				
				var sku = document.cart_quantity.cboProductAcc.options[document.cart_quantity.cboProductAcc.selectedIndex].value + document.cart_quantity.cboAtt1Acc.options[document.cart_quantity.cboAtt1Acc.selectedIndex].value + document.cart_quantity.cboAtt2Acc.options[document.cart_quantity.cboAtt2Acc.selectedIndex].value + document.cart_quantity.cboAtt3Acc.options[document.cart_quantity.cboAtt3Acc.selectedIndex].value 
				switch(sku)		
				{						
						case '':
								divPrice.innerHTML = ""
								divShipping.innerHTML = ""
								productID.value = 00
  								break;
  						default:
								divPrice.innerHTML = "";
								divShipping.innerHTML = "";
								productID.value = 00
								break;										
				}
		}


