/*
All Rights Reserved.
ABCLine Studio
*/
if (navigator.appName == "Netscape" && navigator.plugins)
{
FlashMode = 0;
numPlugins = navigator.plugins.length;
if (numPlugins > 0) 
	{
		 for (k = 0; k < numPlugins; k++)
		{
			plugin = navigator.plugins[k];
			if (plugin.description.indexOf("Flash") != -1)
			{
				numTypes = plugin.length;
				for (j = 0; j < numTypes; j++) 
				{
					 mimetype = plugin[j];
					if (mimetype)
					{     
						if (mimetype.enabledPlugin && (mimetype.suffixes.indexOf("swf") != -1)){FlashMode = 1};
						if (navigator.mimeTypes["application/x-shockwave-flash"] == null){FlashMode = 0};
					}
				}
			}	
		}
	}
 if (FlashMode == 0) {
location.href ="navh.html";
					}
}                    


