Animated GIF and form submission problem

liunx

Guest
Hello,<br />
<br />
I have a problem with form submission and animated gif display.<br />
<br />
I have an html page with a complex form (many form objects).<br />
<br />
Upon clicking submit, I run a JavaScript function that opens a new window and then submits the form. The new window is first loaded with an html file containing a "Please wait" message with an animated gif image of a clock. When the submit occurs a millisecond later, the animated gif stops being animated. I tried putting the gif in an iframe, but that makes no difference.<br />
<br />
The JavaScript:<br />
<br />
<br />
eval("vPage = 'chh920' + vCHQLanguage + '.html'");<br />
winAttributes = window.open(vPage, "winAttributes",vFeatures);<br />
winAttributes.focus();<br />
winAttributes.moveTo(0,0);<br />
winAttributes.resizeTo(screen.availWidth,screen.availHeight);<br />
document.frmQuery.submit();<br />
<br />
<br />
Thank you,<br />
<br />
Francis<!--content-->
 
Back
Top