// añadir a favoritos
/* Modified to support Opera */
function bookmarksite(title,url)
{
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print)
	{ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
	} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}
/*Abrir ventana*/
function Ventana(doc,tit,w,h)
{
	var vent= null;
	var espacleft = (screen.width-w)/2;
	var espactop = (screen.height-h)/2;
	var datos = 'height='+h+',';
		datos +='width='+w+',';
		datos +='resizable=yes,';
		datos +='top='+espactop+',';
		datos +='left='+espacleft+',';
	vent = 	window.open (doc,tit,datos);	
}
/*--------------------------------------------------------------------------------
									BANNERS CON URL*/

	Banners = new Array ('banner3.png','banner4.png')//el orden tiene q ir en concordancia con los hipervinculos
	BannerLink = new Array ('estrelladeeboli.es','participa.php');
	IndBanner = 0;
	NumBanners = Banners.length;
	function VinculoBanner ()
		{
			document.location.href = "http://www.clubcarlino/"+BannerLink[IndBanner];
		}
	function VisualizarBanner()
		{
			IndBanner++;//incrementamos antes para q nos coincia el link con la imagen xq al no tener el href de la imagen puesto en el html no nos coincide
			if (document.images)//preguntamos q el navegador si esta soportando carga de imagenes
				{
					if(IndBanner == NumBanners)
						IndBanner = 0;
					document.images['Banner'].src = "../imagenes/"+Banners[IndBanner];
					
					setTimeout('VisualizarBanner()', 9000);
				}
			
		}


