Salve ragazzi avrei bisogno di aiuto!!!!!
Vorrei fare in modo chje lo script seguente di scroll di news, che mi restituisce un record di database, mi desse la possibilita' di aggiungere un link, sempre preso da campo database come posso fare?????? penso che la stringa da modificare sia quella in rosso ma non so come


<SCRIPT language="JavaScript1.2">

var marqueewidth=150
var marqueeheight=250

var marqueecontents='<div class=testoscroll><%= Replace(strtesto, "'", "\'") %></div>'
if (document.all)
document.write('<marquee direction="up" scrollAmount="3" onMouseover="this.scrollAmount=1" onMouseout="this.scrollAmount=3" style="width:'+marqueewidth +';height:'+marqueeheight+'">' +marqueecontents+'</marquee>')

function regenerate(){
window.location.reload()
}

function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.w rite( marqueecontents)
document.cmarquee01.document.cmarquee02.document.c lose()
thelength=document.cmarquee01.document.cmarquee02. document.height
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thel ength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}else{
document.cmarquee01.document.cmarquee02.top = marqueeheight
scrollit()
}
}

window.onload=regenerate2
</SCRIPT>