Forum Moderators: open
<input type=hidden name="Cell1" value="whatever1">
<input type=hidden name="Cell2" value="whatever2">
<input type=hidden name="Cell3" value="whatever3">
<input type=hidden name="Cell4" value="whatever4">
Does anyone know how to do this?
Thanks!
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Untitled</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form action="" target="theWin" onsubmit="window.open('','theWin','height=200px,width=300px');">
<input type="text" value="something" />
<input type="submit" />
</form>
</body>
</html>