برای هر چهارتا یک فرم بساز
[HTML]
<form action="page1.html" method="get">
<input type="image" value="Button1" />
</form>
<form action="page2.html" method="get">
<input type="image" value="Button2" />
</form>
[/HTML]
یا با جاوا اسکریپت براشون این امکان رو ایجاد کن
[HTML]
<input type="image" value="Button1" id="button1">
<input type="image" value="Button2" id="button2">
<script>
document.getElementById('Button1').onclick = function(event)
{
window.location = "page1.html";
}
document.getElementById('Button2').onclick = function(event)
{
window.location = "page2.html";
}
</script>
[/HTML]