var isFlashInstalled = false;
if (navigator.plugins != null && navigator.plugins.length > 0) {
	// ? Browser supports Netscape-style plugin info.
	if ( typeof navigator.plugins['Shockwave Flash'] == 'object' ) {
		// ? Browser has *some* version of Flash installed.
		isFlashInstalled = true;
	}
}