// 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)		
				{						
 //   Delete below after first entry 						
  						case '36-BE0974-DC':
								divPrice.innerHTML = "<b>$159.95 </b>"
								divShipping.innerHTML = "<b>Free Shipping</b>"
								productID.value = 00
								break;
  						default:
								divPrice.innerHTML = "";
								divShipping.innerHTML = "";
								productID.value = 00
								break;										
				}
		}


