function InsertQuicktime(movie)
{
document.write('<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"');
document.write('CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab"');
document.write('HEIGHT="500"');
document.write('WIDTH="650"');
document.write('>');
document.write('<PARAM NAME="src" VALUE="');
document.write(movie);
document.write('" >');
document.write('<PARAM NAME="bgcolor" VALUE="000000" >');

document.write('<EMBED SRC="');
document.write(movie);
document.write('"');
document.write('HEIGHT="500" WIDTH="650" ');
document.write('TYPE="video/quicktime" ');
document.write('PLUGINSPAGE="http://www.apple.com/quicktime/download/" ');
document.write('bgcolor="000000" ');
document.write('autoplay="true"');


document.write('/>');


document.write('</OBJECT>');
}

function InsertWMV(movie)
{

document.write('<object id="MediaPlayer" width=650 height=480 classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components..." type="application/x-oleobject" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">');
document.write('<param name="filename" value="');

document.write(movie);
document.write('">');
document.write('<param name="Showcontrols" value="True">');
document.write('<param name="autoStart" value="True">');
document.write('<embed type="application/x-mplayer2" src="');
document.write(movie);
document.write('" name="MediaPlayer" width=650 height=480></embed>');
document.write('</object>');



}




