I have my inital script that is running. It then needs to reach out to grab some data from another script. This is what i have, can someone explain why this is not working?

 Code:
Break on

;Setting up the different variables
Dim $Debug
Dim $server

$Location = ('\\server3\apps\newcomputer\location.kix')

Call '$Location'

? "What server am i pulling applciations from?"
? $Server


Second Script
 Code:
Break on

;Which subnet is the machone on? 
$y=SubStr( @IPADDRESS0, 1, 11)
     Select
       Case $y=" 10.111.  1"
	   $Server = 'Server1'
       Case $y=" 10. 11.100"
	   $Server = 'Server1'
      Case 1
	   $server = 'Server3'
End select

End


I was under the impression that if i "Dimmed" the variable that would make it run across all scripts, thus holding the value.
_________________________
Where ever you go, there you are.