function insertWMV(strURL, width, height)
{
	document.write('<embed type="application/x-mplayer2" name="player" src="' + strURL + '" pluginspage="http://www.microsoft.com/windows/mediaplayer/" width="' + width + '" height="' + height + '" border="0" autostart="1" showstatusbar="0" showcontrols="1" showtracker="1" showdisplay="0" displaysize="0" showpositioncontrols="0" autosize="1" showgotobar="0" showcaptioning="0" autorewind="0" animationatstart="0" transparentatstart="0" allowscan="0" enablecontextmenu="0" clicktoplay="0" invokeurls="0"></embed>');
}


function insertQT(strURL, width, height)
{
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="' + width + '" height="' + height + '">\n');
	document.write('	<param name="cache" value="false" />\n');
	document.write('	<param name="qtsrc" value="' + strURL + '" />\n');
	document.write('	<param name="autoplay" value="true" >\n');
	document.write('	<param name="controller" value="true" />\n');
	document.write('	<embed src="' + strURL + '" width="' + width + '" height="' + height + '" type="video/quicktime" autoplay="true" controller="true" cache="false" loop="false" controller="false" pluginspage="http://www.apple.com/quicktime/download/"></embed>\n');
	document.write('</object>\n');
}