function clavar()
{
	if(document.getElementById('incflash').value=='1')
	{
		ventana = window.innerHeight;
		flashHeight = 800;
		
		altura = document.getElementById('hipercontenedor').offsetHeight;
		//altura -= 45; //correción de unos pixeles de más que no se de donde vienen, probablemente de la altura del foot
		margen = altura - flashHeight;
		
		if (window.innerHeight){
			espacio_pagina = window.innerHeight;
		}
		else
		{
			espacio_pagina = document.body.clientHeight;
		} 
		
		if(altura>espacio_pagina)
		{
			document.getElementById('flash').style.top = margen + 'px';
			
			
			if (altura<flashHeight)
			{
				document.getElementById('flash').style.height = altura + 'px';
				document.getElementById('flash').style.top = 0 + 'px';
			}
			else
			{
				document.getElementById('flash').style.height = flashHeight + 'px';
			}
		}
		else
		{	
			document.getElementById('flash').style.height = altura + 'px';
			document.getElementById('flash').style.top = 0 + 'px';
			
		}
	}
}