-- en pagina de imagenes pequeñas:
Código:
<a href="mostrarimagen.htm?123_98.jpg">imagen</a>
-- Pagina destino
Código:
<html>
<head>
<title>FOTO</title>
<script language="JavaScript">
url = location.href
val = url.indexOf("?")
if (val != -1) nombre = url.substring(val+1,url.length)
else nombre = "sinfoto.jpg"
c="<img src='../img/fotos/" + nombre + "' width='384' height='256'>"
document.write(c);
</script>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
</body>
</html>
Más o menos.