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" height="' + height + '" width="' + width + '">\n');
	document.write('	<param name="src" value="' + strURL + '">\n');
	document.write('	<param name="autoplay" value="true">\n');
	document.write('	<param name="type" value="video/quicktime" height="' + height + '" width="' + width + '">\n');
	document.write('	<embed src="' + strURL + '" height="' + height + '" width="' + width + '" autoplay="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/">\n');
	document.write('	</object>\n');
}

