Ciao, ho scaricato questo script che fa al caso mio, ma dovrei inserire una variante: l'immagine visualizzata al momento deve linkare l'img a pieno formato in una pop up. Per lo script della pop up non ho problemi, è come inserire il link nello script che non so proprio fare.

Grazie per l'aiuto.



<HTML>
<HEAD>

<!-- Codice scaricato gratuitamente da HTML.it, il sito italiano sul Web publishing
http://www.html.it -->

<TITLE>Esempi Javascript: esempio pratico </TITLE>


</HEAD>

<BODY bgcolor="white">

<table border="0" cellpadding="0">
<tr>
<td width="100%">[img]immagine01.jpg[/img]</td>
</tr>
<tr>
<td width="100%"><form method="POST" name="rotater">
<div align="center"><center>

<script language="JavaScript1.1">
var photos=new Array()
var which=0

/*Change the below variables to reference your own images. You may have as many images in the slider as you wish*/
photos[0]="immagine01.jpg"
photos[1]="immagine02.jpg"
photos[2]="immagine03.jpg"
photos[3]="immagine04.jpg"
photos[4]="immagine05.jpg"


function backward(){
if (which>0){
window.status=''
which--
document.images.photoslider.src=photos[which]
}
}

function forward(){
if (which<photos.length-1){
which++
document.images.photoslider.src=photos[which]
}
else window.status='End of gallery'
}
</script><!--webbot
bot="HTMLMarkup" endspan --><input type="button" value="<<Back" name="B2"
onClick="backward()"> <input type="button" value="Next>>" name="B1"
onClick="forward()">

Ricomincia</p>
</center></div>
</form>
</td>
</tr>
</table>


</body>
</html>