function w3cMovie(fileName, width, height, autoStart, volume) {
	document.write("<embed id='WinMedia' src='"+fileName+"' width='"+width+"' height='"+height+"' autostart='"+autoStart+"' volume='"+volume+"' border='0' ShowControls='False' ShowStatusBar='False'></embed>");
}

function w3cMovieMem(fileName) {
	document.write("<embed src='"+fileName+"'></embed>");
}

function w3cFlash(fileName, width, height, wmode, play, loop) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="'+width+'" height="'+height+'">');
	document.write('	<param name=movie value="'+fileName+'">');
	document.write('	<param name=quality value="high">');
	document.write('	<param name="play" value="'+play+'">');
	document.write('	<param name="loop" value="'+loop+'">');
	document.write('	<param name="wmode" value="'+wmode+'">');
	document.write('	<embed src="'+fileName+'" quality="high" play="'+play+'" loop="'+loop+'" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'">');
	document.write('	</embed></object>');
}

