function loadFlash(filename,width,height,oMenu,oWmode){
		document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+ width +'" height="'+ height +'">');
		document.write('<param name="movie" value="'+ filename +'">');
		document.write('<param name="quality" value="high">');

		if(oMenu)
			document.write('<param name="menu" value="false">');
		if(oWmode)
			document.write('<PARAM NAME=wmode VALUE=transparent>');

		document.write('<embed src="'+ filename +'" quality="high" ');
		if(oWmode)
			document.write('wmode="transparent"');
		document.write(' width="'+ width +'" height="'+ height +'"pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>');
        document.write('</object>');
}

function loadMovie(filename,oName,oDisplay,oStatus,oControls,oAutoStart,oLoop,oVolume,oWidth,oHeight){
document.write('<embed src="'+ filename +'" type="application/x-mplayer2" Name="'+ oName +'" ShowDisplay="'+ oDisplay +'" showstatusbar="'+ oStatus +'"');
document.write('showcontrols="'+ oControls +'" autostart="'+ oAutoStart +'" loop="'+ oLoop +'" volume="'+ oVolume +'"');
if(oWidth!="0")
	document.write(' width="'+ oWidth +'" height="'+ oHeight +'"');
document.write('>');
}
