Forum Moderators: open
Here's my form...
<form name="form1" action="action.html" target="_blank" method="get">
<input type="text" name="YOUR_ID_HERE" value = "YOUR_ID_HERE">
<input type="text" name="INSERT_FIRST" value = "INSERT_FIRST">
<input type="text" name="INSERT_LAST" value = "INSERT_LAST">
<input type="text" name="YOUR_DOMAIN_NAME" value = "YOUR_DOMAIN_NAME">
<br>
<input type = "submit" value = "Steps To Getting Started!" style="background-color:black;color:white;font-family:arial;font-size:12px; font-weight:bold;"/>
</form>
*****Sammy******
okay, let's call the main page (the one with the form on it) "MainPage" (just for our reference).
Now, when the user submits the form data, the result opens in the new window "NewWin" for our reference.
"NewWin" loads its own content, along with a javascript that opens a new window "MinimalWin" (using window.open), writes NewWin's content to the new MinimalWin, then closes NewWin.
This solution will work, even if the user doesn't have javascript working (the result of NewWin will just stay in NewWin, it just won't be transferred to MinimalWin).
Sorry if I'm not making sense, I can write you some code if you still don't get it.
The solution was posted in your other thread [webmasterworld.com].