Forum Moderators: open
<html><head><title></title></head>
<body>
<form>
<input type="text" name="whatever" size="20" maxlength="50" value="Green Widgets">
<input type="button" onClick="sendTo(this.form.whatever.value,400,500);" value="Go There">
</form>
<script language="javascript">
function sendTo(new_url,w,h) {
var url = 'http://www.example.com/script.cgi?selected='
var day = new Date;
var id = day.getTime();
var params = 'width='+w+',height='+h+',scrollbars,resizable';
url += escape(new_url);
//alert(url); // Un-comment this to verify it's working with alert box. It is.
var win = open(url,id,params);
}
</script>
</body>
</html>