//redimensionado de en altura resizeFLVplayer
/*function resizeLFVplayerY(id,anchura,altura){
	
	var navegador = navigator.appName.toLowerCase();
	
	if(navegador=="opera"){
		document.getElementById(id).style.width = anchura;
		document.getElementById(id).style.height = altura;
		
	}else{
		document.getElementById(id).width = anchura;
		document.getElementById(id).height = altura;
	}
}
*/
//redimensionado de en altura resizeFLVplayer
function resizeLFVplayerY(id,anchura,altura){
	var navegador = navigator.appName.toLowerCase();
	if (navegador=="microsoft internet explorer") {
		window[id].width = anchura;
		window[id].height = altura;
		 
	}else if(navegador=="netscape"){
		document[id].width = anchura;
		document[id].height = altura;
		
	}else if(navegador=="opera"){
		document.getElementById(id).style.width = anchura;
		document.getElementById(id).style.height = altura;
		
	}
}
