Okay...

I am down to one pressing issue and one mildly pressing issue...

1. How can I load the current document into a varible? In other words, the code below has the value (ABC1234) in it and I need to extract the value so I can place it into my Access Database.

code:
 ;<LINK rel="stylesheet" type="text/css" href="Include/AcctMgr.css">
<HTML>
<HEAD>
<Title>New Account Creation</Title>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<LINK rel="stylesheet" type="text/css" href="NewAccount.css"></HEAD>
<body bgcolor="black">
<center><br><br><br><br>
<table border="1" bgcolor="navy" bordercolor="yellow" cellpadding="10">
<tr>
<td align="center" bgcolor="green"><font color="yellow" size="5"><b>The unique UserID assigned to you is:</b></font> <font color="yellow" size="6"><b>ABC1234</b></font></td>
</tr>
<tr>
<td align="center"><A HREF="GeneralInformation.asp?AnotherAcct=1"><font color="yellow"><b>Create another account</b></font></A></td>
</tr>
</table>
</center>
</BODY>
</HTML>

2. Right now, I am Sleeping between pages. I tried reusing
code:
   While $IE.Busy and $IE.ReadyState <> 4 and @ERROR = 0 Loop

but I suppose it already assumed the page was finished from the first time it was used. Any ideas on how to make it wait until the next page is loaded?