The original post talked of this being a 'pop up' page. Not sure if the page has been changed since that post, but it looks like an ordinary page to me. There is a javascript that trys to keep the window a certain size:
CODE
<script>self.resizeTo( 700, 405 );</script>
And a lot of other scripts that make sure valid info has been entered.
Also see the line that has the 'beep' .wav file.
I suspect any problems are caused by the following line:
CODE
<div name="static" id="static" style="position:absolute; top:0; left:0; width:100%; height:100%; z-index:2;" align="center" >
The 100% values apply to the 700 by 405 pixel window, z-index brings it to the front (I think the self.focus command would do the same thing). But the
name= and
id= part may be confusing to any CSS capable/compliant browser. The reason is that I see no link or input from any external style sheet. Nor is there any CSS definitions any where else in the page. And that's where the name and id would have been defined! Lacking the definitions, your browser may just dump the .gif to your screen. Actually, there is another similar line, again with an undefined name and id.
Also see some javascript looking at the browser type being used, not sure what it is doing except to alter the page for IE4. Shouldn't affect others.
That's my guess, anyway...
Notice that Richard (and Lillian) are in OHIO! Folks in the East should take note and especially anyone near a new house in North Carolina!
BTW, you guys have a free stay in the backwaters of Memphis, should you be coming back on I-40! E-mail me for phone number, directions.
Jim C.