function embedFlash(url,height,width, language) {
    document.write('<!--[if IE]>');
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('		codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"');
	document.write('		width="' + width + '" height="' + height + '"');
	document.write('		id="flash"');
	document.write('		viewastext>');
	document.write('	<PARAM name="movie" value="' + url + '?language=' + language + '">');
	document.write('	<PARAM name="quality" value="high">');
    document.write('   <PARAM name="salign" VALUE="tr">');
	document.write('	<PARAM name="bgcolor" value="#FFFFFF">');
	document.write('	<PARAM name="wmode" value="transparent">');
	document.write('	<PARAM name="scale" value="exactfit">');
	document.write('</OBJECT>');
	document.write('<![endif]-->');
	document.write('<![if !IE]>');
	document.write('<EMBED src="' + url + '?language=' + language + '" ');
	document.write('		quality="high"');
	document.write('		bgcolor="#FFFFFF"');
	document.write('		width="' + width + '" ');
	document.write('		height="' + height + '"');
	document.write('		type="application/x-shockwave-flash"');
	document.write('		pluginspage="http://www.macromedia.com/go/getflashplayer"');
	document.write('		salign="lt"');
	document.write('		wmode="transparent"');
	document.write('		scale="exactfit"');
	document.write('		id="flash">');
	document.write('</EMBED>');
	document.write('<![endif]>');
}
