Is there a way to allow \"unlimited\" vars for a function in JavaScript?
Example:
load(var1, var2, var3, var4, var5, etc...) load(var1)
Use the arguments object when inside the function to have access to all arguments passed in.
arguments