﻿//comunes
function EstiloAsignar(obj, clase)
{
	if (obj)
		obj.className = clase;
}
function HnlEmbed(codigo) 
{
    document.write(codigo);    
}

function IrA(url)
{
	if (url)
		window.location.href = url;
}
	
//funciones menu
function DesplegarMenu()
{
    document.getElementById('Desplegable').style.display = "block";
    /*var Pestana = document.getElementById("PestanaFotos");
	if (Pestana == null)
		return;	
    if(Pestana.className == "PestanaOn")
		document.getElementById("secuenciador_ach").style.display = "none";
	else
		document.getElementById("secuenciador_ach_video").style.display = "none";*/
		
	var Reproductor = document.getElementById("ReproductorFlashContenido");
	if (Reproductor != null)
		Reproductor.style.display = "none";
	var Reproductor2 = document.getElementById("HomeReproductorFlashContenido");
	if (Reproductor2 != null)
		Reproductor2.style.display = "none";
}
function OcultarMenu()
{
	document.getElementById('Desplegable').style.display = "none";
    /*var Pestana = document.getElementById("PestanaFotos");
    if (Pestana == null)
		return;
	if(Pestana.className == "PestanaOn")
		document.getElementById("secuenciador_ach").style.display = "block";
	else
		document.getElementById("secuenciador_ach_video").style.display = "block";*/
		
	var Reproductor = document.getElementById("ReproductorFlashContenido");
	if (Reproductor != null)
		Reproductor.style.display = "block";
	var Reproductor2 = document.getElementById("HomeReproductorFlashContenido");
	if (Reproductor2 != null)
		Reproductor2.style.display = "block";

}

//bocadillos del carrusel de exposiciones
/*function DestacadoOverMostrar(mostrar, artistas, expo, obj, totalitems)
{   	
	var bocadillo = document.getElementById("BocadilloRollOver");
	
	if (!mostrar)
	{
		bocadillo.style.display = 'none';
		return;
	}
	
	var bocadilloArtistas = document.getElementById("BocadilloRollOverArtistas");
	var bocadilloExpo = document.getElementById("BocadilloRollOverExpo");
	var offsetLeftCapsulaBocadillos = document.getElementById("CapsulaBocadillos").offsetLeft;
	var offsetLeftCarruselExposiciones = document.getElementById("CarruselExposicionesContenedor").offsetLeft;
	var leftDestacadoOver = document.getElementById(obj).offsetLeft;
	var widthDestacadoOver = 85; //60 es el ancho del destacado, 10 de los margenes y 15 más para situarla un poco mas a la izquierda
	
//alert("obj: " + obj + " => offsetLeftCapsulaBocadillos: " + offsetLeftCapsulaBocadillos + " => offsetLeftCarruselExposiciones: " + offsetLeftCarruselExposiciones + " => leftDestacadoOver: " + leftDestacadoOver + " => widthDestacadoOver: " + widthDestacadoOver);
	bocadillo.style.left = parseInt((offsetLeftCapsulaBocadillos + offsetLeftCarruselExposiciones + leftDestacadoOver) - widthDestacadoOver) + "px";	
//alert("bocadillo.style.left: " + bocadillo.style.left);
	bocadilloArtistas.innerHTML = artistas;
	bocadilloExpo.innerHTML = expo;	
	bocadillo.style.display = 'block';
}
*/
//el secuenciador de flash utiliza esta funcion para mostrar las imagenes grandes
function Zoom(img)
{
	var wnd = window.open("/_common/SecuenciadorZoom.aspx?Imagen=" + img, "zoom", "left=5, top=5, width=828, height=677, directories=0, location=0, menubar=0, resizable=1, scrollbars=0, status=0, toolbar=0");
	wnd.focus();
}
//Inicializacion
var ArrayImagenes = new Array();
var ImgActivaIdx = 0;
