Ciao lists,

devo mettere un window.open('pag.ext?valo='+valo) dentro setTimeout:

function apri(valo){
window.open('apri.htm?valo='+valo,'popup','width=1 0,height=10,location=yes,resizable=yes')
}

vorrei diventasse

function apri(valo){
setTimeout("window.open('apri.htm?valo='"+valo",'p opup','width=10,height=10,location=yes,resizable=y es')",2000)

}

Ma va in errore.Come posso concatenare il todos?

Grazie

+David