var FlashMovie = {
	render: function(width, height, url, is_transparent, xhtml, altimageurl) {
		document.write('<object style="margin:0;padding:0;" width="'+width+'" height="'+height+'">');
		document.write('<param name="movie" value="'+url+'" />');
		if(is_transparent) document.write('<param name="wmode" value="transparent" />');

		if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){
			document.write('<embed style="margin:0;padding:0;" src="'+url+'" '+(is_transparent?"wmode=\"transparent\" ":"")+'type="application/x-shockwave-flash" width="'+width+'" height="'+height+'" />');
			if(altimageurl && altimageurl != "") {
				document.write('<noembed><img src="'+altimageurl+'" width="'+width+'" height="'+height+'" alt="" '+(xhtml?'/':'')+'></noembed>');
			}
		} else {
			if(altimageurl && altimageurl != "") {
				document.write('<img src="'+altimageurl+'" width="'+width+'" height="'+height+'" alt="" '+(xhtml?'/':'')+' />');
			}
		}

		document.write('</object>');
	}
}
