// Developed by Mike Kiska 4/2/1007

Array.prototype.Remove = function( value )
{
  for( x = 0; x < this.length; x++ )
    if ( this[x] == value )
    {
      this.splice( x, 1 );
      break;
    }    
};

Array.prototype.RemoveIndex = function( index )
{
  this.splice( index, 1 );
};