Javascript Array push16le(aWord)
Array.prototype.push16le = function(aWord) { this.push((aWord ) & 0xff,/*from w w w .j a va 2s . c om*/ (aWord >> 8) & 0xff); };