var minHeight = 500;

function reconstruction()
{
	m = document.getElementById("flashcontent");
  if (window.innerHeight == undefined) h = document.body.clientHeight;
  else h = window.innerHeight;
  if (h > minHeight)
	 m.style.height = "100%";
  else
   m.style.height = minHeight;
}
