salve a tutti, per aprire un nuovo popup uso questa funzione:
function openCenterWindow(theURL,winName,features,width,hei ght) {
popup_left = (screen.width / 2) - (width/2);
popup_top = (screen.height / 2) - (height/2);
features = features + ",width="+width+",height="+height;
features = features + ",top="+popup_top+",left="+popup_left;
features = features + ",titlebar=0";
window.open(theURL,winName,features);
};
che richiamo dalle pagine cosi:
openCenterWindow('download/<%=oElenco("img")%>','foto','status=no,resizable=y es','<%=datiImg(1)+30%>','<%=datiImg(2)+30%>')
e tutto funziona perfettamente .. quello che vi chiedo e' se volessi far apparire un titolo al popup invece che il percorso dell'immagine (che esce ora essendoci solo quello nel documento) come potrei fare ?
grazie mille,
Maurizio