function InsertSwf(SwfFile,Width,Height) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+Width+'" height="'+Height+'">\n');
	document.write('<param name="movie" value="'+SwfFile+'">\n');
	document.write('<param name="quality" value="best">\n');
	document.write('<param name="wmode" value="transparent">\n');
	document.write('<param name="menu" value="false">\n');
	document.write('<embed src="'+SwfFile+'" width="'+Width+'" height="'+Height+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false"></embed></object>\n');
}

function InsertBanner(BannerUrl,SwfFile,Width,Height) {
	document.write('<a href="'+BannerUrl+'" target="_blank">\n');

	document.write('	<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" \n');
	document.write('		codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" \n');
	document.write('		WIDTH='+Width+' HEIGHT='+Height+'> \n');
	document.write('		<PARAM NAME=movie VALUE="'+SwfFile+'"> \n');
	document.write('		<PARAM NAME=menu VALUE=false> \n');
	document.write('		<PARAM NAME=quality VALUE=high> \n');
	document.write('		<PARAM NAME=wmode VALUE=opaque> \n');
	document.write('		<PARAM NAME=scale VALUE=noscale>\n');
	document.write('		<EMBED src='+SwfFile+' menu=false quality=high wmode=opaque\n');
	document.write('		 scale=noscale WIDTH='+Width+' HEIGHT='+Height+' TYPE="application/x-shockwave-flash" \n');
	document.write('		PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">\n');
	document.write('		</EMBED>\n');
	document.write('	</object>\n');

	document.write('</a>\n');
}