I have set up a textbox that passes a value to the url, but I can't get it to open in a new tab.
<html>
<script type="text/javascript">
function goToPage() {
var page = document.getElementById('page').value;
window.location = "http://" + page + ":443";
window.target = "_blank";
}
</script>
<table><tr><td><img src="DEA_75.jpg"></td>
<td>Service Tag<br>
<input type="text" id="page" size="5"/><br>
<input type="submit" value="submit" onclick="goToPage();"/></td>
</html>
Thanks!