I am using the following script to embed multiple players in my web site hxxp://janusevi.tripod.com/ : // JavaScript Document function cDisc(ob,tn){ ob.title=disc[tn]; } function mPlay(stream,player){ var PlayerDiv=document.getElementById("mPlayer"); // document.all.mPlayer.innerHTML = ""; if (player=="wm"){ //WMP.controls.stop(); PlayerDiv.innerHTML = "<object classid='CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6' type='application/x-mplayer2' width='400' height='300' id='WMP' ><param name='enableContextMenu' value='0'/><param name='autoplay' value='true'/><param name='SendPlayStateChangeEvents' value='true'/><param name='url' value='"+stream+"'/><embed src='"+stream+"' width='400' height='300' autostart='1' autoplay='1' align='middle' type='application/x-mplayer2' pluginspage='http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/' showcontrols='1' showstatusbar='0' showdisplay='0' autorewind='0' enablecontextmenu='0' border='0'></embed></object>"; document.title = "FAMILY JANUSEVI MEDIA"; return; } if (player=="rp"){ //RMP.controls.stop(); PlayerDiv.innerHTML = "<OBJECT ID='RMP' CLASSID='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' WIDTH='400' HEIGHT='300' ><PARAM NAME='SRC' VALUE='http://5fm.com.mk:8011/listen.pls' /><PARAM NAME='CONSOLE' VALUE='_unique' /><PARAM NAME='CONTROLS' VALUE='ImageWindow,ControlPanel,StatusBar' /><PARAM NAME='CENTER' VALUE='true' /><embed src='' width='400'height='300' console='_unique' controls='ImageWindow,ControlPanel,StatusBar' center='true' name='RMP'></embed></OBJECT>"; document.title = "FAMILY JANUSEVI MEDIA"; RMP.SetSource(stream); RMP.DoNextEntry(); RMP.DoPlay(); return; } if (player=="qt"){ //QTP.controls.stop(); PlayerDiv.innerHTML = "<object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab' width='400' height='300' id='QTP'><param name='src' value=''/><param name='autoplay' value='true'><param name='CONTROLLER' VALUE='true'><param name='SCALE' VALUE='tofit'><param name='pluginspage' value='http://www.apple.com/QuickTime/download/' /><embed src='' width='400' height='300' autoplay='true' controller='true' scale='tofit' pluginspage='http://www.apple.com/QuickTime/download/'></embed></object>"; document.title = "FAMILY JANUSEVI MEDIA"; QTP.src=stream; return; } if (player=="nw"){ document.title = "Opening New Window (Stream Website) for nw stream in new window"; window.open(stream); return; } } I want to add flash to the mix. I have been trying with no luck. Any help appreciated.