function nhm_ie_update() {
	theObjects = document.getElementsByTagName("object"); 
	for (var i = 0; i < theObjects.length; i++) { 
	theObjects[i].outerHTML = theObjects[i].outerHTML; 
	} 
}


function nhm_print_media_player(videoFile,videoHeight,videoWidth,videoTitle){
	document.write('<object id="MediaPlayer" width="'+videoWidth+'" height="'+videoHeight+'" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" standby="Loading Windows Media Player components..." codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,0701" type="application/x-oleobject">');
	document.write('<param name="Filename" value="'+videoFile+'">');
	document.write('<param name="AutoStart" value="1">');
	document.write('<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" src="'+videoFile+'" name="MediaPlayer" width="'+videoWidth+'" height="'+videoHeight+'">');
	document.write('</embed>');
	document.write('</object>');
}

function nhm_print_flash(videoFile,videoHeight,videoWidth){
	document.write('<object classid="CLSID:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+videoWidth+'" height="'+videoHeight+'" codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=6,0,0,0">');
	document.write('<param name="movie" value="'+videoFile+'">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="scale" value="exactfit">');
	document.write('<param name="menu" value="true">');
	document.write('<param name="bgcolor" value="#FFFFFF">');
	document.write('<embed src="'+videoFile+'" quality="high" scale="exactfit" menu="false" bgcolor="#FFFFFF" width="'+videoWidth+'" height="'+videoHeight+'" swLiveConnect="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">');
	document.write('</embed>');
	document.write('</object>');

}
