window.onresize = function ()
{
	if (document.body.clientHeight < 650)
	{
		document.getElementById('flash').style.height = '650px';
	}
	else if (document.body.clientHeight >= 650 && document.body.clientHeight <= 850)
	{
		document.getElementById('flash').style.height = document.body.clientHeight + 'px';
	}
	else
	{
		document.getElementById('flash').style.height = '850px';
	}
}
window.MoveToFlash = function ()
{
	document.getElementById('flash').scrollIntoView();
}
