My company is required to use an application developed in ASP.NET by another company. The application needs to be open in two separate browser windows. The company that developed the application has added some JavaScript at the top of the main page to stop user from opening multiple instances of the application. The script that is placed at the top of the main page is as follows:
<script type="text/javascript">
function OpenApplicationWindow() {
var sessionId = 'sidus455bjzspf55cunqrv55';
if (window.name.search(sessionId) == -1) {
window.open(window.location.href, sessionId, "resizable=yes,scrollbars=yes,toolbar=no,status=yes");
window.open('', '_parent', '');
window.close();
}
}
OpenApplicationWindow();
</script>
Is there anyway to open a link to that page and allow more than one instance to open? Or is there anyway to stop that script from running.