Dear Collin,<br><br>I don't think you will have luck submitting the form since it is already closing along with the browser. In IE you can use the 'window' object to open a new window with your destination url and append all of your form elements to the url, it would look something like this:<br><br>function onBodyUnload(){<br> var surl = "mypage.asp?" +<br> "phone=" + document.form1.txPhone +<br> "&age=" + document.form1.txAge;<br> window.open( surl);<br>}<br><br>You could even do a loop using the form collection to make it more generic.<br><br>You hook this up within the 'body' tag like so:<br><br><body onunload="onBodyUnload()"><br><br>This even works in Nutscrap except that in the version I currently have there is no access to the form elements. This could vary from version to version of Nutscrap, or IE for that matter.<br><br>I apologize for my incomplete information, I only posted this when I saw no other help being offered from anyone else.<br><br>Good luck<br>-pete