var paramCountry	= String(GetCookie("COUNTRY"));

switch (paramCountry.toLowerCase()) {

	// feed brasil
	case "brazil":
		destacado = {
				"title"	:	"16 de marco, ás 18h",
				"image"	:	"/home/destacados/images/the_Troop.jpg",
				"link"	: 	"/canal/series/the_troop/",
				"target":	"_self"
			};
		break;

	// feed sur
	case "argentina":
	case "chile":
	case "paraguay":
	case "uruguay":
		destacado =	{
				"title"	:	"A partir del día 18",
				"image"	:	"/home/destacados/images/the_Troop.jpg",
				"link"	: 	"/canal/series/the_troop/",
				"target":	"_self"
			};
		break;
			
	// feed norte
	case "venezuela":
	case "colombia":	
	case "mexico":	
	default:
		destacado =	{
				"title"	:	"A partir del día 18",
				"image"	:	"/home/destacados/images/the_Troop.jpg",
				"link"	: 	"/canal/series/the_troop/",
				"target":	"_self"
			};
}

var mymovie = new FlashObject("/home/destacados/flash/destacados.swf", "destacado_swf", "188", "238", "9", "#ffffff");

mymovie.addVariable	("title", 	destacado.title);
mymovie.addVariable	("image", 	destacado.image);
mymovie.addVariable	("link", 	escape(destacado.link));
mymovie.addVariable	("target", 	destacado.target);
mymovie.addParam	("wmode",	"transparent");
mymovie.addParam	("menu",	"false");
mymovie.addParam	("scale",	"noscale");
document.writeln	("<div id=\"destacadoGde\" class=\"box\"><\/div>");

mymovie.write		("destacadoGde");
