function LlenarPorcentaje(PO, P, indice){
         var Elemento;

         if (PO == "")
             PO = 100;
         if (P == "")
             P = 30;

         for (var i = 0; i < document.form1.length; i++){
              Elemento = document.form1.elements[i];
              if (Elemento.type.slice(0,6) == 'select'){
                  if (Elemento.name == 'PorcentajeOriginal['+ indice +']'){
                      LlenarConNumeros(Elemento, 1, 100, false, PO*1);
                  }else{
                      if(Elemento.name == 'Porcentaje['+ indice +']')
                         LlenarConNumeros(Elemento, 1, 100, false, P*1);
                  }
              }
         }
}

function EliminarBotonFoto(IdFoto){
         document.form1.EliminarFoto.value = IdFoto;
         document.form1.submit();
}

function EliminarProducto(){
         if (confirm("¿Está seguro de eliminar este producto?")){
             document.form1.ControlEliminar.value=1;
             document.form1.submit();
         }
}
