// JavaScript Document

function show_video(_video_src){
	
document.write('<object id="MediaPlayer1" name=MediaPlayer1  width=320 height=240 classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"');
document.write(' codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715"');
document.write(' standby="Windows Media Player" type="application/x-oleobject">');
var strParam = '<param name="Filename" value=' + _video_src + '>';
document.write(strParam);
document.write('<param name="uiMode" value="invisible">');
document.write('<param name="AutoStart" value="false">');
document.write('<embed type="application/x-mplayer2"');
document.write(' pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/"');
document.write(' name=MediaPlayer1');
document.write(' autostart=0');
document.write(' width=320');
document.write(' height=240');

strParam =' src=' + _video_src + '>';

document.write(strParam);
document.write('</embed>');
document.write('</object>');

}
