javascript redirect to url target _blank code example
Example 1: open ilnk target js
<script>
window.open('http://www.example.com?ReportID=1', '_blank');
</script>
Example 2: javascript location redirect target _blank
window.open('http://www.example.com?ReportID=1', '_blank');