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="src" value="' + strURL + '" />\n');
		document.write('<param name="controller" value="true" />\n');
		document.write('<param name="autoplay" value="true" />\n');
		document.write('<!--[if !IE]>-->\n');
		document.write('<object type="video/quicktime" data="' + strURL + '" width="' + width + '" height="' + height + '">\n');
			document.write('<param name="autoplay" value="true" />\n');
			document.write('<param name="controller" value="true" />\n');
		document.write('</object>\n');
		document.write('<!--<![endif]-->\n');
	document.write('</object>\n');
}
