If you're trying to just open up an entire new browser window, rather than a pop up you do not need JaveScript. You can use:<a href="link" target="_blank">Link Name</a>
If you're trying to use a pop up you can search inc_header.asp for:function openWindow5(url)
and in that function remove the 's' from toolbars - that syntax is incorrect:...'width=450,height=525,scrollbars=yes,toolbars=yes,menubar=yes,resizable=yes'); if (window.focus){popupWin.focus();}}
The if statement we added at the end (in blue) sets focus to the pop up so that it doesn't get lost behind the main window. We had an instance where the user would be going back and forth quite a bit and if the pop up was left open it would just flash in the start menu and not actually get focus. We added this to all the OpenWindow functions in inc_header.asp