//only problem with this would be that resizing the browser may result in the brown strip @ the bottom not being in place.
//perhaps the better solution would be a defined height and a background color for a div (or the body) that is the same width of  the flash & 100% tall..
function getHeight() {
	var val = "100%";	
	var minimum = 800;
	var lowResHeight = "890";
	if(getWindowHeight() < minimum){
		val = lowResHeight;
	}		
	return val;	
}







function getWindowHeight() {
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerHeight ) == 'number' ) {
    //Non-IE
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myHeight = document.body.clientHeight;
  }
return myHeight;	
}