var timerID = 0;
var featuredproducts = new Array();
featuredproducts[0]='banner\/FFA-Banner.swf';
featuredproducts[1]='banner\/ucs-banner.swf';
featuredproducts[2]='banner\/ls-banner.swf';

//featuredproducts[2]='banner\/3';
//featuredproducts[3]='banner\/4';

var bgcolor=new Array;
bgcolor[0]='#000000';
bgcolor[1]='#000000';
bgcolor[2]='#FFFFFF';
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 = "<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=9,0,28,0\" width=\"468\" height=\"120\"><param name=\"movie\" value=\"';
	 updatedcode += featuredproducts[count];
	 updatedcode += '\"><param name=\"quality\" value=\"high\"><embed src=\"';
	 updatedcode += featuredproducts[count];
	 updatedcode += '\" quality=\"high\" pluginspage=\"http:\/\/www.adobe.com\/shockwave\/download\/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application\/x-shockwave-flash\" width=\"468\" height=\"120\"><\/embed><\/object>';


//	 updatedcode = 'AC_FL_RunContent(\"codebase\",\"http:\/\/download.macromedia.com\/pub\/shockwave\/cabs\/flash\/swflash.cab#version=9,0,28,0\",\"width\",\"468\",\"height\",\"120\",\"src\",\"';
  //   updatedcode += featuredproducts[count];
	// updatedcode += '\",\"quality\",\"high\",\"pluginspage\",\"http:\/\/www.adobe.com\/shockwave\/download\/download.cgi?P1_Prod_Version=ShockwaveFlash\",\"movie\",\"';
   //  updatedcode += featuredproducts[count];
    // updatedcode +='\" );';
	 
//	}

///if (document.getElementById) {
	//alert(updatedcode);
	document.getElementById("barea").innerHTML = updatedcode;
//	document.getElementById("barea").style.backgroundColor = bgcolor[count];
/// } else {
///  document.barea.document.open();
///  document.barea.document.write(eval(updatedcode));
//  document.barea.bgColor = bgcolor[count];
///  document.barea.document.close();
 ///}
 timerID=setTimeout ("updatebarea()", 8500);
}