// JScript source code
	function updateProduct()
		{				
				var productID = document.getElementById("products_id")				
				var sku = document.cart_quantity.cboProduct.options[document.cart_quantity.cboProduct.selectedIndex].value + document.cart_quantity.cboColor.options[document.cart_quantity.cboColor.selectedIndex].value + document.cart_quantity.cboAtt1.options[document.cart_quantity.cboAtt1.selectedIndex].value  + document.cart_quantity.cboAtt2.options[document.cart_quantity.cboAtt2.selectedIndex].value 
				switch(sku)		
				{						
						case '':
								divPrice.innerHTML = ""
								divShipping.innerHTML = ""
								document.cart_quantity.cboProduct.disabled = false;							    
								document.cart_quantity.cboProductAcc.disabled = false;
								document.cart_quantity.cboColor.disabled = false;
								document.cart_quantity.cboColorAcc.disabled = false;
								productID.value = 00
  								break;
  						case '43-XB-1002-US':
								divPrice.innerHTML = "<b>$79.95</b>"
								divShipping.innerHTML ="<b>Free Shipping</b>"
								productID.value = 8471
								break;
  						default:
								divPrice.innerHTML = "<b>Select Product</b>";
								divPrice.innerHTML = "";
								divShipping.innerHTML = "";
								productID.value = 00
								break;										
				}
		}


