function parse2Int(num)
if(num[0] == 0) return 0
return parseInt(num);
}