var bloqueFlash = false;
var artistToShow;
var artistActual = "Adquiriendo Datos...";
var listaAnuncios = new Array();
listaAnuncios[0]="0501Country";
listaAnuncios[1]="1001Country";
listaAnuncios[2]="040109country";
listaAnuncios[3]="728";
listaAnuncios[4]="Julia";
listaAnuncios[5]="ProviderA";
listaAnuncios[6]="0701Country";
listaAnuncios[7]="109";
listaAnuncios[8]="0801Country";
listaAnuncios[9]="010108Dot977";
listaAnuncios[10]="102807Dot977";
listaAnuncios[11]="010109Country";
listaAnuncios[12]="050109Country";
listaAnuncios[13]="030109Country";
listaAnuncios[14]="260";


var peliBloque = aleatorio(100,200);
peliBloque = "BloqueINFO.swf";
var peliRadio = aleatorio(100,200);
peliRadio = "RadioPlayerBillycountry.swf";

swfobject.embedSWF(peliBloque, "flashcontentbloq", "170", "350", "9.0.0");
swfobject.embedSWF(peliRadio, "reproductor", "320", "142", "9.0.0");
				   	
function loadInfo()
{
	if(bloqueFlash==true)
	{
		if ( $('#elartista').length )
  		{
			artistToShow = $('#elartista').attr("name");
									
			if(artistToShow=="" || artistToShow==null)
			{
				artistToShow = "Adquiriendo datos..."
			}
			
			var pos = searchInArray(listaAnuncios, artistToShow);
			if (pos >=0)
	  		{
			   	artistToShow = "PUBLI. EXTERNA";
			}
			if(artistToShow!=artistActual)
			{
				document.getElementById("flashcontentbloq").getInfoFromFlash(artistToShow);
				artistActual = artistToShow;
			}
		}
	}
}
					
function FlashListoParaDatos()
{
	bloqueFlash = true;
}
				
setTimeout(function(){
	loadInfo();
	setInterval(loadInfo,10000);
},3000);



function searchInArray(lista, valor){
var ind, pos;
for(ind=0; ind<lista.length; ind++)
   {
    if (lista[ind] == valor)
      break;
    }
pos = (ind < lista.length)? ind : -1;
return (pos);
} 