// JavaScript Document
function resizeWindow(){
		
	winH = window.innerHeight;
		
	if (navigator.appName.indexOf("Microsoft")!=-1) {
		winH = document.body.offsetHeight;
	}
	
	
	var flashDiv = document.getElementById('flash');
	if ( winH < 780 ) {
		flashDiv.style.height = '780px';
	} else{
		flashDiv.style.height = winH + 'px';
		
	}
	
	
}//end