
function expandFlashHeight ( newHeight, objectID ) {
// PRE: the new height to expand the flash container to
// POST: expands the height of the flash

	//var fObj = document.getElementById ( objectID );
	//fObj.style.height = newHeight + "px";

	var browser=navigator.appName;
	var b_version=navigator.appVersion;
	var version=parseFloat(b_version);
	//Fixes the bug in IE 6 and earlier versions where flash menu becomes hidden behind SELECT box in form
	if ((browser=="Microsoft Internet Explorer") && (version<=6)) {
		if (document.all.input10) {
			if (document.all.input10.type == "select-one") {
				if (newHeight != 147.7) {
					if (newHeight < 140) {
						document.all.input10.style.visibility = "visible";
					}
					else {
						document.all.input10.style.visibility = "hidden";
					}
				}
				else {
					document.all.input10.style.visibility = "visible";
				}
			}
		}
	}

	fObj = document.getElementById ( 'MainNavSWF' );
	fObj.height = newHeight;

}
