function CheckFlashResize(mWidth,mHeight) {
	Sizer=document.getElementById("flashcontainer");
	if(Sizer!=null && typeof(Sizer)!='undefined') {
		if(GetWindowWidth()<mWidth) {
			Sizer.style.width=mWidth+"px";
		} else {
			Sizer.style.width="100%";
		}
		if(GetWindowHeight()<mHeight) {
			Sizer.style.height=mHeight+"px";
		} else {
			Sizer.style.height="100%";
		}
	}
}
if(typeof(LoadedModule)!='undefined') {
	LoadedModule("FLASHRES");
}
