por las dudas así haces que abre un popup al presionar enter en el campo
pero eso seguro ya lo sabes lo estoy adaptando para tu cometido (solo por las dudas)
Código:
<html>
<head>
<script type="text/javascript">
function popupenter(e) {
tecla = (document.all) ? e.keyCode : e.which;
if (tecla==13) {window.open('2.html','','width=100,height=125');}
}
</script>
</head>
<body>
<input type="text" onkeypress="popupenter(event)" />
</body>
</html>