var timerID = 0;
var featuredproducts = new Array();
//featuredproducts[0]='\/Flash\/yosoytuluz.swf';
//featuredproducts[1]='\/Flash\/rojo.swf';
//featuredproducts[2]='\/Flash\/rojo-navidad.swf';
//featuredproducts[2]='\/Flash\/julissa.swf';
featuredproducts[0]='\/Flash\/lily-goodman-sin-mi-edo.swf';
featuredproducts[1]='\/Flash\/pdv-banner-2.swf';
featuredproducts[2]='\/Flash\/torontochristianradioadd.swf';
featuredproducts[3]='\/Flash\/alex.swf';
//featuredproducts[3]='\/Flash\/funky-y-triple-seven-425.swf';

var bgcolor=new Array;
//bgcolor[0]='#000000';
//bgcolor[1]='#00A000';
//bgcolor[2]='#CCC2CD';
//bgcolor[2]='#000000';
bgcolor[0]='#000000';
bgcolor[1]='#000000';
bgcolor[2]='#FFFFFF';
bgcolor[3]='#000000';
//bgcolor[3]='#000000';
//bgcolor[3]='#000000';
rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
        return rnd.seed/(233280.0);
};

function rand(number) {
        return Math.ceil(rnd()*number);
};

function updatebarea() {
   var updatedcode;
   var featLen = featuredproducts.length;
   var count = -1;
   while (count < 0 || count > featLen ) {
   		count = Math.floor (Math.random()*(featLen));
   }
   if(timerID) {
      clearTimeout(timerID);
   }
	if (count == 4) {
		updatedcode = "<a href=\"\/alex_campos.asp\"><img src=\"\/Flash\/Alex-Banner-425x109.gif\" width=\"425\" height=\"109\" alt=\"Alex Campos Ticketes\" \/><\/a>"
//	} else if (count == 2) {
//		updatedcode = "<a href=\"http:\/\/www.encendidohits.com\/brotedeadoracion.html\"><img src=\"\/Flash\/brotebanner1.gif\" width=\"425\" height=\"109\" alt=\"\" \/><\/a>"
//	} else {
//		updatedcode = "<a href=\"\/junio_16_2006.asp\"><img src=\"\/Flash\/santo_remedio.jpg\" width=\"425\" height=\"109\" alt=\"\" \/><\/a>"
	} else {
	 updatedcode = '<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=6,0,0,0\" width=\"425\" height=\"109\" id=\"featuredproduct\" ><param name=\"movie\" value=\"'
	 updatedcode += featuredproducts[count];
	 updatedcode += '\" \/> <param name=\"quality\" value=\"high\" \/> <param name=bgcolor value=\"' + bgcolor[count] + '\" \/> <embed src=\"'
	 updatedcode += featuredproducts[count];
	 updatedcode += '\" quality=high bgcolor=' + bgcolor[count] + '  width=\"425\" height=\"109\" name=\"featuredproduct\" type=\"application\/x-shockwave-flash\" pluginspage=\"http:\/\/www.macromedia.com\/go\/getflashplayer\"><\/embed><\/object>'
	}
 if (document.getElementById) {
	document.getElementById("barea").innerHTML = updatedcode;
	document.getElementById("barea").style.backgroundColor = bgcolor[count];
 } else {
  document.barea2.document.open();
  document.barea2.document.write(updatedcode);
  document.barea2.bgColor = bgcolor[count];
  document.barea2.document.close();
 }
 timerID=setTimeout ("updatebarea()", 45000);
}