//Enhance Array Object
Array.prototype.pop = 
function () {
  var lastone = this[this.length-1];
  this.length--;
  return lastone;
};
Array.prototype.push = 
function (what) {
  this[this.length] = what;
  return this.length;
};
