hi,

i have a function with the the var parameter in it.
is it possible to change the var name everytime i called that function or re-declare that var name.

Code:
  
 function myfunc(STRING* mystr, var _myvar)
 {
    _myvar = file_open_read(mystr);
    ....
    ....
 }

 .......
 .......
  myfunc("somestr",10);
  myfunc("otherst",11);
  so on ....... 



is it possible to change _myvar to _hisvar when i call myfunc.


thanks..