ウェブブラウザのウィンドウを開かずにページを切り替える場合は、「指定したURLにページ遷移する / 指定したURLを開く」の記事を参照してください。
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<h3>JavaScriptでウィンドウを開く</h3>
<p>JavaScriptで指定したURLを新しいウィンドウを開いて表示します。</p>
<a href="javascript:void(0);" onclick="window.open('Destination.html','_blank')">新しいウィンドウで開く</a>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<h3>遷移先のページ</h3>
<p>テストの遷移先ページです。</p>
</body>
</html>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<h3>JavaScriptでウィンドウを開く</h3>
<p>JavaScriptで指定したURLを新しいウィンドウを開いて表示します。</p>
<a href="javascript:void(0);" onclick="window.open('https://www.ipentec.com','_blank')">新しいウィンドウで開く</a>
</body>
</html>