// JavaScript Document
function cambiarTamano(){
	var tamanobody=document.body.offsetHeight;
	var tamanoCont=tamanobody-288;
	if (tamanoCont<400){
		document.getElementById("flashcontent").style.height=400+"px";
	}else{
		document.getElementById("flashcontent").style.height=tamanoCont+"px";
	}
}




