@Description: Removes a value or a set of values from an array.
@File: Array/prototype/remove.js
@Author: Paul Visco
@Version: 1.1 11/19/07
@Param: values Array If passed an array of values, all the values in the argument array are removed from the array being manipulated
@Param: value Object/String/Number If a single object, string, number, etc is passed to the function than only that value is removed.
@Return: Array Returns the array minus the values that were specified for removal.
@Example:var myArray = [5, 10, 15];
var answer = myArray.remove([10,5]);
//answer =[15];
var myArray = [6, 7, 8];
var answer = myArray.remove(6);
//answer =[7,8];