function embedvideo(filename) {

var newhtml = ''
newhtml += '<OBJECT ID="MediaPlayer" WIDTH="360" HEIGHT="386"'
newhtml += 'CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"'
newhtml += 'STANDBY="Loading Windows Media Player components..." TYPE="video/x-ms-asf">'
newhtml += '<PARAM NAME="src" VALUE="' + filename + '">'
newhtml += '<PARAM name="ShowControls" VALUE="true">'
newhtml += '<param name="ShowStatusBar" value="true">'
newhtml += '<param name="autostart" value="true">'
newhtml += '<PARAM name="ShowDisplay" VALUE="true">'
newhtml += '<EMBED TYPE="application/x-mplayer2" SRC="' + filename + '"'
newhtml += 'NAME="MediaPlayer" WIDTH="360" HEIGHT="386" ShowControls="1" ShowStatusBar="1" ShowDisplay="1" autostart="1">'
newhtml += '</EMBED>'
newhtml += '</OBJECT>'

return newhtml
}
