Javascript
<script type="text/javascript"> function popup_member(){ location.href = "member.html"; } function popup_schedule(){ location.href = "schedule.html"; } </script>
HTML
<input type="button" onclick="popup_member()" value="メンバーページへ" /> <input type="button" onclick="popup_schedule()" value="スケジュールページへ" />