      function UpdatePrice(oField)
      {

         id = oField.value;

         if(document.getElementById(id)){
           
            if(document.getElementById("product_price"))
               document.getElementById("product_price").innerHTML = document.getElementById(id).value;
            document.getElementById("ProductPrice").value = document.getElementById(id).value;
         }   
      }
       function UpdateDefaultPrice()
      {
         id = document.getElementById("option").value;

         if(document.getElementById(id)){
            document.getElementById("product_price").innerHTML = document.getElementById(id).value;
         }   
    
      }
      function ShowDiv(divName, show,anc)
      {
        document.getElementById(divName).style.display = show;
        if((show != 'none') && (anc))
            document.anchors[anc].focus();
      }
      function ShowImage()
      {
      }