hi Dp members, i need a help to embed an audio play-list in an html page i want, when i click on the play-list text then it will automatically play that play-list song in the embed flv player. here's the code : <head> <script type='text/javascript' src='swfobject.js'></script> <script type='text/javascript'> function gaana(url) { var so = new SWFObject('player.swf','ply','270','20','9','#ffffff'); so.addParam('allowfullscreen','true'); so.addParam('allowscriptaccess','always'); so.addParam('wmode','opaque'); so.addVariable('file',url); so.addVariable('duration','90'); so.write('mediaspace'); //document.write(url); } </script> </head> <------------Body------------> <script type='text/javascript' src='swfobject.js'></script> <div id='mediaspace'>This text will be replaced</div> <script type='text/javascript'> var so = new SWFObject('player.swf','ply','270','20','9','#ffffff'); so.addParam('allowfullscreen','true'); so.addParam('allowscriptaccess','always'); so.addParam('wmode','opaque'); so.addVariable('file','file url'); so.addVariable('duration','90'); so.write('mediaspace'); //document.write(url); </script> any buddy can help me in this ? thanks in advance