No he probado el código, es solo un ejemplo de como hacerlo con variables GET.
Código PHP:
<?php
while($reg_buscador=mysql_fetch_array($ejecutaconsulta)){
echo "<table>
<tr>
<td colspan='4' align='center'><a href=mi_otra_pagina.php?img=";
if(isset($_GET['img'])
echo $_GET['img']."><img src='img_subidas_mini/".$_GET['img']." width=300 height=300></a></td>";
else
echo $reg_buscador['foto1']."><img src='img_subidas_mini/".$reg_buscador['foto1']." width=300 height=300></a></td>";
echo "<td height='10%'><b>Marca</b></td>
</tr>
<tr>
<td rowspan='3'><a href=mi_pagina.php?img=".$reg_buscador['foto2']."><img src='img_subidas_mini/$reg_buscador[foto2]' width=80 height=67></a></td>
<td rowspan='3'><a href=mi_pagina.php?img=".$reg_buscador['foto3']."><img src='img_subidas_mini/$reg_buscador[foto2]' width=80 height=67></a></td>
<td rowspan='3'><a href=mi_pagina.php?img=".$reg_buscador['foto4']."><img src='img_subidas_mini/$reg_buscador[foto2]' width=80 height=67></a></td>
<td rowspan='3'><a href=mi_pagina.php?img=".$reg_buscador['foto5']."><img src='img_subidas_mini/$reg_buscador[foto2]' width=80 height=67></a></td>
</tr>
</table>";
}
?>