Dear Terry,
I think the question you are asking is about how you share variables between client-sided VBScript and the VBScript ran server-side inside ASP pages. The honest answer is that you can't. The ASP page runs on the server, creates a web-page, and then ceases. The results (the web-page) are then passed back to the client (your browser) and any client-sided scripts (JavaScript, VBScript) are then run. They do not have access to anything that happened when the ASP page was being run, though. Only the resulting HTML (and no variables or suchlike from the ASP page) is passed back to the browser as this is all the browser understands and expects.
However, this is not to say that what you want to do is impossible. If you can give a description of why you want to do it, perhaps someone here has a solution.
Regards,
Simon