<!--

function insertMedia(media, mediaExt) {

  document.write('<embed src="../media/' + media + '.' + mediaExt+ '"' + 'width="448" height="336"></embed>');

}


function insertQTPlayer() {

	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="448" height="348" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">\n');
	document.write('<param name="BGCOLOR" value="#000000" />\n');
	document.write('<param name="src" value="" />\n');
	document.write('<param name="kioskmode" value="true" >\n');
	document.write('<param name="scale" value="tofit" >\n');
	document.write('<param name="showlogo" value="false" >\n');
	document.write('<param name="autoplay" value="false" >\n');
	document.write('<param name="loop" value="false" >\n');
	document.write('<param name="controller" value="true" >\n');

	document.write('</object>\n');
}

function insertWMPlayer() {

    document.write('<object id="mediaplayer" width="0" height="0" classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6"\n');
	document.write('type="application/x-oleobject">\n');
	document.write('<param name="AutoStart" value="true"/>\n');
	document.write('<param name="PlayCount" value="1"/>\n');
	document.write('<param name="SendPlayStateChangeEvents" value="false"/>\n');
	document.write('<param name="ShowStatusBar" value="false"/>\n');
	document.write('<param name="URL" value=""/>\n');
	
	document.write('</object>\n');             

}

//-->