function compareNumbers(n1, n2) { alert('Сравниваю '+n1+' c '+n2) if (n1 == n2) return 0; if (n1 > n2) return 1; else return -1; }