function FindSWF(obj) {
	if (document.all) return(document.all[obj]);
	if (document.getElementById) return(document.getElementById(obj));
	return(false);
}
function GetHeight() {
	var height = 0;
	if (navigator.userAgent.indexOf('MSIE') != -1) height = document.body.offsetHeight;
	else height = window.innerHeight;
	return(height.toString());
}
function ResizeWindow(name) {
	var movie = FindSWF(name);
	if (movie) movie.SendToActionScript(GetHeight());
}