I am using following codes to submit form but not able to post form variables to new window(without menubar & toolbar).
What lines should be added to post form variables to new window using javascript.
====================
Example: these codes post form variables in the same window.
Code:
<script language="javascript">
function emailLink()
{
document.listmails.submit();
}
</script>
<form name="listmails">
<input type="text" name="a" value="1234">
<input type="text" name="b" value="1234">
</form>
[/code]