function ajustar_tamanyo()
{
	var navegador = navigator.appName;
	if (navegador == "Microsoft Internet Explorer") 
		var ancho_total=parseInt(top.document.body.clientWidth)-23;
	else 
		var ancho_total=parseInt(top.document.body.clientWidth)-20;
		
	document.getElementById("tabla_cabecera").setAttribute("width", parseInt(ancho_total));
	document.getElementById("celda_titulo_cabecera").setAttribute("width", parseInt(ancho_total)-510);
	if(document.getElementById('cambio_de_idioma')!=null) document.getElementById('cambio_de_idioma').style.left=document.getElementById('td_contenido_central').clientWidth+document.getElementById('td_contenido_central').style.left;
}

function ajustar_tamanyo_animacion()
{
	var navegador = navigator.appName;
	if (navegador == "Microsoft Internet Explorer") 
		var ancho_total=parseInt(top.document.body.clientWidth)-23;
	else 
		var ancho_total=parseInt(top.document.body.clientWidth)-20;
	document.getElementById("tb_animacion").setAttribute("width", parseInt(ancho_total));
	document.getElementById("td_animacion").setAttribute("width", parseInt(ancho_total));
}

