function sDecrease(i, ii){ // По убыванию if(i > ii) return -1; else if (i < ii) return 1; else return 0; }