function showDVMenu(id){
	
	var arrDvs = document.getElementsByTagName("div");

	for(i=0;i<arrDvs.length;i++){
		if (arrDvs[i].id.substring(0,4)=='menu'){
			arrDvs[i].style.display="none";
			}
		}
	obj = document.getElementById('menu'+id)
	if(obj){
		if(obj.style.display ==""){
			obj.style.display ="none";
		}
		else{
			obj.style.display ="";
		}
	}
}

function abreFoto(foto){
	ancho = 800
	alto = 600
	l = (screen.width/2) - (ancho/2)
	t = (screen.height/2) - (alto/2)
	params = "resizable=no,scrollbars=no,width=" + ancho + ",height=" + alto + ",top=" + t + ",left=" + l;
	ventana = window.open("../popFoto.php?foto="+foto,null,params);
}

function abreJuego(swf){
	ancho = 640
	alto = 480
	l = (screen.width/2) - (ancho/2)
	t = (screen.height/2) - (alto/2)
	params = "resizable=no,scrollbars=no,width=" + ancho + ",height=" + alto + ",top=" + t + ",left=" + l;
	ventana = window.open("popJuego.php?swf="+swf,null,params);
}


function addbookmark()
{
	bookmarkurl="http://www.rcsport.es"
	bookmarktitle="-= RC-Sport =- Ocio y Deporte para empresas"
	if (document.all)
	window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

function changeImg(img_name,img_src){
	document[img_name].src=img_src;
}

function showClasificacion(id){
	
	var arrDvs = document.getElementsByTagName("div");

	for(i=0;i<arrDvs.length;i++){
		if (arrDvs[i].id.substring(0,6)=='cuadro'){
			arrDvs[i].style.display="none";
			}
		}
	obj = document.getElementById('cuadro'+id)
	if(obj){
			obj.style.display ="";

	}

	var arrAchor = document.getElementsByTagName("a");
		for(i=0;i<arrAchor.length;i++){
		if (arrAchor[i].id.substring(0,3)=='tit'){
			arrAchor[i].className="clasTituloOFF";
			}
		}
	obj = document.getElementById('tit'+id)
	if(obj){
			obj.className="clasTituloON";
		}
	}

function openDiv(id){
	
	document.getElementById(id).style.display ="";
}
