function setFlashHeight(newH){
	document.getElementById("splashimage").style.height = newH+"px";		
	document.getElementById("splashcontent").style.top = (newH-140)+"px";
}
function canResizeFlash(){
	var ua = navigator.userAgent.toLowerCase();
	var opera = ua.indexOf("opera");
	if( document.getElementById ){
		if(opera == -1) return true;
		else if(parseInt(ua.substr(opera+6, 1)) >= 7) return true;
	}
	return false;
}