if (Version_ > 3)
{

	var plugin2type = "Shockwave Flash"
	var plugin3type = "Shockwave Flash 3.0"
	var plugin4type = "Shockwave Flash 4.0"
	var plugin5type = "Shockwave Flash 5.0"
	var plugin6type = "Shockwave Flash 6.0"
	var plugin7type = "Shockwave Flash 7.0"
	var plugin8type = "Shockwave Flash 8.0"
	var plugin9type = "Shockwave Flash 9.0"

	var flashversion = false;

	if(Navigator_ || Mac_)
	{
		for(i=0;i<navigator.plugins.length;i++) 	
		{
			if(navigator.plugins[i].description.lastIndexOf(plugin2type) != -1) {
				flashversion = 2;
			}
			if(navigator.plugins[i].description.lastIndexOf(plugin3type) != -1) {
				flashversion = 3;
			}
			if(navigator.plugins[i].description.lastIndexOf(plugin4type) != -1) {
				flashversion = 4;
			}
			if(navigator.plugins[i].description.lastIndexOf(plugin5type) != -1) {
				flashversion = 5;
			}
			if(navigator.plugins[i].description.lastIndexOf(plugin6type) != -1) {
				flashversion = 6;
			}
			if(navigator.plugins[i].description.lastIndexOf(plugin7type) != -1) {
				flashversion = 7;
			}
			if(navigator.plugins[i].description.lastIndexOf(plugin8type) != -1) {
				flashversion = 8;
			}
			if(navigator.plugins[i].description.lastIndexOf(plugin9type) != -1) {
				flashversion = 9;
			}
			
		}
	}

	if(Explorer_ && Win_) 
	{
		if(FlashMode_2) flashversion = 2;
		if(FlashMode_3) flashversion = 3;
		if(FlashMode_4) flashversion = 4;
		if(FlashMode_5) flashversion = 5;
		if(FlashMode_6) flashversion = 6;
		if(FlashMode_7) flashversion = 7;
		if(FlashMode_8) flashversion = 8;
		if(FlashMode_9) flashversion = 9;
	}
}