// JavaScript Document

function flashMovie(name){
	if(navigator.appName.indexOf("Microsoft") != -1){
		return window[name];
	}else{
		return document[name];
	}
}

function callASfunction(rutaXML){
rutaXML='http://multimedia.lacaixa.es/lacaixa/ondemand/obrasocial/video/config/fichas/'+rutaXML+'.xml';
flashMovie('flashcontent').changeXML(rutaXML);
flashOn = false;
}

var flashOn = false;

function resizeDivFlash(ancho, alto){
	
	if (flashOn == false){
		flashOn = true;
		$('#video').append("<div id='fondo' class='transparent'></div>");
		$('#menusBlanco').append("<div id='fondo2' class='transparent'></div>");
		alto= alto-1+35;
		if( ancho < 763){
			leftNuevo = (763 - ancho) / 2;
			$("#playerFicha").animate({
				//top: "0",
				//width: ancho+"px",
				height: alto+"px"
			}, 1000, "" , "" );
		}else{
			leftNuevo = (ancho - 763);
			$("#playerFicha").animate({
				//left: "-" + leftNuevo +"px", 
				//top: "0",
				//width: ancho+"px",
				height: alto+"px"
			}, 1000, "" , "" );
		}
		$('#flashcontent').attr("wmode", 'transparent');
	}else{
		if (flashOn == true){
				flashOn = false;
				$("#playerFicha").animate({
					//left: "0px",
					//top: "29px",
					//width: "763px",
					height: "200px"
				}, 1000, "" , "" );
				$("#fondo").remove();
				$("#fondo2").remove();
		}
	}
}
