// Extrae los valores numericos para Valores con "," ó "()".

 function repladurac (str) {
    var cad = "";
    var l = str.length;
    for (var i = 0; i <= l; ++i) {
       var c = str.substr( i, 1 );
       if ( c != ',' && c != ')' ) {
         if ( c == '(' )
	   cad = cad + '-';
	 else
	   cad = cad + c;
       }
    }
    return parseFloat(cad);
 }

 SortableTable.prototype.addSortType( "NumberC", repladurac );

