﻿function setHeight() {
	var el = document.getElementById('flash-wrap');
	var setHeight = document.body.offsetHeight - 60;
	if (setHeight > 675) {
		el.style.height = setHeight + 'px';
		el.style.paddingBottom = '0';
	} else {
		el.style.height = '675px';
		el.style.paddingBottom = '40px';
	}
	//el.style.width = (document.body.offsetWidth - 40) + 'px';
}
