du kan åbne den med en _blank som target...
<form name="test" method="get" action="modtagerside" target="_blank">
<input type="text">
<input type="submit" target="_blank">
</form>
hvis du vil bruge en popup skal du lave dit eget script
også vil det ligne dette:
<html>
<head>
<script type="text/javascript" language="JavaScript">
function submit_test()
{
indhold = document.getElementById('indhold').value
//window.open("action.asp?indhold=" + indhold + ,"","status,width=725,height=500,border=0,resizable=yes")
window.open("action.asp?indhold=" + indhold ,"Editor","status,width=725,height=500,border=0,resizable=yes")
}
</script>
</head>
<body>
<form method="get">
<input type="text" id="indhold">
<input type="button" value="send" onclick="submit_test()">
</form>
</body>
</html>
Mvh. Jop...