function InsertWindowsMediaMovie(width, height, standby, src, autostart, controltype, animationatstart, clicktoplay, showstatusbar, showdisplay, notIEshowstatusbar)
{
	document.write('<OBJECT ID="OurMedia" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" width="' + width + '" height="' + height + '" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" standby="' + standby + '" TYPE="application/x-oleobject">\n');
	document.write('<PARAM NAME="FileName" VALUE="' + src + '">\n');
	document.write('<PARAM NAME="AutoStart" VALUE="' + autostart + '">\n');
	document.write('<param name="ControlType" value="' + controltype + '">\n');
	document.write('<PARAM NAME="AnimationAtStart" VALUE="' + animationatstart + '">\n');
	document.write('<PARAM NAME="ClickToPlay" VALUE="' + clicktoplay + '">\n');
	document.write('<PARAM NAME="ShowStatusBar" VALUE="' + showstatusbar + '">\n');
	document.write('<EMBED type="application/x-mplayer2" src="' + src + '" name="OurMedia" pluginspage="http://www.microsoft.com/isapi/redir.dll?prd=windows&sbp=mediaplayer&ar=media&sba=plugin&" controltype="' + controltype + '" showdisplay="' + showdisplay + '" showstatusbar="' + notIEshowstatusbar + '" clicktoplay="' + clicktoplay + '" width="' + width + '" height="' + height + '">\n');
	document.write('</EMBED>\n');
	document.write('</OBJECT>\n');
}


function InsertQuicktimeMovie(width, height, src, autoplay, controller)
{
	document.write('<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"  width="'+ width + ' " height="' + height + '"  CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">\n');
	document.write('<param name="src" value="' + src + '" />\n');
	document.write('<param name="autoplay" value="' + autoplay + '" />\n');
	document.write('<param name="controller" value="' + controller + '" />\n');
	document.write('<EMBED src="' + src + '"  width="' + width + '" height="' + height + '" autoplay="' + autoplay + '" CONTROLLER="' + controller + '" PLUGINSPAGE="http://www.apple.com/quicktime/download/">\n');
	document.write('</EMBED>\n');
	document.write('</OBJECT>\n');
}


// ediy v2.1
window.onload = function() {
  elems=document.getElementsByTagName("noscript");
  for(i=elems.length-1;elem=elems[i];i--) {
    if(elem.className=="clickfix")
      elem.outerHTML = elem.innerHTML; 
}}