// JavaScript Document

function cambiar_imagen(imagen, imagenAnt, imagenId, description)
{
	var imgHtml = document.getElementById("imgPrincipal");
	document.getElementById("galeriaImagenes").href = imagen;
	document.getElementById("galeriaImagenes_lupa").href = imagen;
	
	document.getElementById("lupa").style.display="block";
	htmlNuevo='<li><img id="imagen" src="'+imagen+'" alt="'+description+'" title="'+description+'" width="308" class="ppal"/></li>';
	imgHtml.innerHTML=htmlNuevo;
}

function embed_video(urlVideo)
{
	if(urlVideo != "")
	{
		var imgHtml = document.getElementById("imgPrincipal");
		
		document.getElementById("lupa").style.display="none";
		
		document.getElementById("galeriaImagenes").href = "";	
		
		htmlNuevo='<li><object width="308"><param name="movie" value="'+urlVideo+'&hl=es_ES&fs=1&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="'+urlVideo+'&hl=es_ES&fs=1&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="308"></embed></object></li>';
		imgHtml.innerHTML=htmlNuevo;
	}
}
