Is it possible to dynamically rename a variable?

[FONT=Verdana]I need to dynamically rename a variable.

For example, I have declared this variable:

var BName = 1;

But I want to change the name of the variable BName to BName01 at runtime. Not the value, I need the value to remain the same.

Is this possible?[/FONT]