if ((flash_ver_detected >= min_flash_version_required) && (navigator.appName == "Microsoft Internet Explorer") && (navigator.platform.indexOf("Win") != -1)) {
	if (flash_to_show != "") {
		document.write(flash_to_show);
	}
	else {
		document.location.replace(flash_page_location);
	}
}
else {
	if (no_flash_to_show != "") {
		document.write(no_flash_to_show);
	}
	else {
		document.location.replace(no_flash_page_location);
	}
}