function writeFlash(path, base, width, height) {
	strContent = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' +
	'codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"' +
	'width="'+width+'" height="'+height+'" viewastext>' +
	'<param name="movie" value="'+path+'" />' +
	'<param name="quality" value="high" />' +
	'<param name="loop" value="true" />' +
	'<PARAM name="WMode" value="Transparent">'+
	'<param name="base" value="'+base+'/Flash/Global/"  />' +
	'<embed src="'+path+'" quality="high" wmode="transparent"quality="high" loop="true" bgcolor="#FFFFFF" ' +
	'base="'+base+'/Flash/Global/" pluginspage="http://www.macromedia.com/go/getflashplayer"' +
	'type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"> </embed>' +
	'</object>';
	document.write(strContent);
}
