I need it to open a webpage IN A NEW WINDOW, then go back (this page will not always be accessed from the same page, so it needs to tell the web browser "Back"). I've tried...
<html>
<head>
<script type="text/javascript">
window.open("SITE")
history.back();
</script>
</head>
</html>...