function divSize (theHeight) {
	var winH;
	var flashContainer = document.getElementById('flash');
	
	
	if (navigator.appName=="Netscape") {
  		winH = window.innerHeight;
 	}
 	if (navigator.appName.indexOf("Microsoft")!=-1) {
  		winH = document.body.offsetHeight;
 	}
	if(theHeight < winH){
		flashContainer.style.height=winH-20;
	}else{
		flashContainer.style.height=theHeight;
	}
}
