El punto es: carga las fotos iniciales bien, pero el punto es:
le escribo en el textobox el nombre de la foto - Click y muestra foto - click sobre la foto y no ejecuta el lightbox.
Aqui el codigo.
Una ayuda por favor. Gracias
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Lightbox JS v2.0 | Test Page</title>
<script src="js/prototype.js" type="text/javascript"></script>
<script src="js/scriptaculous.js?load=effects,builder" type="text/javascript"></script>
<script src="js/lightbox.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/lightbox.css" type="text/css" media="screen" />
<style type="text/css">
body{ color: #333; font: 13px 'Lucida Grande', Verdana, sans-serif; }
</style>
<script language="javascript" type="text/javascript">
function clickimage(foto)
{
document.write('<center>')
document.write('<a href="'+ foto + '" rel="lightbox[roadtrip]"> <img src="'+ foto + '" width="200" height="150" alt=""/> </a>')
document.write('</center>')
}
</script>
</head>
<body onload="initLightbox()">
<center>
<form id="form1" name="form1" method="post" >
<label>
<input type="text" name="foto1" id="foto1" value="../image/tocandodoor.jpg" />
</label>
<p>
<label>
<input type="button" name="otro" id="otro" value="View" onclick="clickimage(document.getElementById('foto1 ').value)" />
</label>
</p>
</form>
</center>
<script language="javascript" type="text/javascript">
document.write('<center>')
for(a=1;a<=4;a++){
document.write('<a href="c:/fotos/'+a+'.jpg" rel="lightbox[roadtrip]" title="Prev<- Press Key ->Next">><img src="c:/fotos/'+a+'.jpg" width="200" height="150"/> </a>');
}
document.write('</center>')
</script>
</body>
</html>