function run_active_flash(){
var country_list = new Array ();
country_list[0] = "AA";
country_list[1] = "GB";
country_list[2] = "US";
country_list[3] = "EU";
country_list[4] = "AU";
country_list[5] = "CA";
// Pick a country from the list,
// and set the 'country to display' paragraph content to that country..	
	
	
if (display !="main"){
document.write(
	"<OBJECT"
	+ "CLASSID=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
	+ "WIDTH=760"
	+ "HEIGHT=340"
	+ "CODEBASE=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0'>"
	+ "<PARAM NAME=MOVIE VALUE=movie_clips/"+display+".swf?country="+country_list[country]+">"
	+ "<PARAM NAME=PLAY VALUE=true>"
	+ "<param name=WMODE VALUE=transparent >"
	+ "<PARAM NAME=LOOP VALUE=false>"
	+ "<PARAM NAME=QUALITY VALUE=high>"
	+ "<PARAM NAME=MENU VALUE=false>"
	+ "<EMBED"
	+ " id=display_id"
	+ " src=movie_clips/"+display+".swf?country="+country_list[country]
	+ " WIDTH=760"
	+ " HEIGHT=340"
	+ " PLAY=true"
	+ " LOOP=false"
	+ " QUALITY=high"
	+ " WMODE=transparent"
	+ " MENU=false"
	+ " TYPE=application/x-shockwave-flash"
	+ " PLUGINSPAGE=http://www.macromedia.com/go/getflashplayer>"
	+ "</EMBED>"
	+ "</OBJECT>"
	);}
	else{

document.write(	
	"<table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td>"
	+ "<table width='100%' height='100%' border='0' cellspacing='0' cellpadding='0'><tr><td>"
	+ "<OBJECT"
	+ "CLASSID=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
	+ "WIDTH=514"
	+ "HEIGHT=250"
	+ "CODEBASE=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0'>"
	+ "<PARAM NAME=MOVIE VALUE=movie_clips/main2007.swf?country="+country_list[country]+">"
	+ "<PARAM NAME=PLAY VALUE=true>"
	+ "<param name=WMODE VALUE=transparent >"
	+ "<PARAM NAME=LOOP VALUE=false>"
	+ "<PARAM NAME=QUALITY VALUE=high>"
	+ "<PARAM NAME=MENU VALUE=false>"
	+ "<EMBED"
	+ " id=display_id"
	+ " src=movie_clips/main2007.swf?country="+country_list[country]
	+ " WIDTH=514"
	+ " HEIGHT=250"
	+ " PLAY=true"
	+ " LOOP=false"
	+ " QUALITY=high"
	+ " WMODE=transparent"
	+ " MENU=false"
	+ " TYPE=application/x-shockwave-flash"
	+ " PLUGINSPAGE=http://www.macromedia.com/go/getflashplayer>"
	+ "</EMBED>"
	+ "</OBJECT>"
	+ "</td></tr><tr><td>"
	+ "<iframe name='extra' frameborder='0' marginheight='0' marginwidth='0' hspace='0' scrolling='auto' src='news/extra.htm' width='514' height='90' SCROLLING='no'></iframe>"
	+ "</td></tr></table></td><td>"
	+ "<iframe name='news' frameborder='0' marginheight='0' marginwidth='0' hspace='0' scrolling='auto' src='news/news_1.htm' width='246' height='340' overflow-x: hidden; overflow-y: scroll;></iframe>"
	+ "</td></tr></table>"
	);
	};
};