function updatePrice(prodId,packId,prodPrice,packPrice) {
          if(document.getElementById("onOff_" + prodId).value==0) {
          //if(document.products_form.fieldName.Checked) {
            document.getElementById("product_price_" + prodId).innerHTML =  '<b>$' + (prodPrice + packPrice) + '</b>';
            document.getElementById("product_url_" + prodId).innerHTML =  "<a href='" + "/order/order.php?pid="  + prodId + "&package=" + packId + "'><img src='/content/images/buynowbutton.gif' alt='Buy Now' width='68' height='22' border='0' /></a>";
            document.getElementById("onOff_" + prodId).value="1";
          } else {
            document.getElementById("product_price_" + prodId).innerHTML = '<b>$' + prodPrice + '</b>';
            document.getElementById("product_url_" + prodId).innerHTML =  "<a href='" + "/order/order.php?pid="  + prodId + "&package=0'><img src='/content/images/buynowbutton.gif' alt='Buy Now' width='68' height='22' border='0' /></a>";
            document.getElementById("onOff_" + prodId).value="0";
          }
}
