// JavaScript Document

	var op=0;
	if (window.opera) op=1; // Opera?
	var ie = (document.all && document.getElementById && !op) ? 1 : 0;
	var moz = ((!document.all && document.getElementById) || op) ? 1 : 0;
	var ns4 = document.layers ? 1 : 0;	
	// some parameters for the Javascript Flash detection
	neededVersion = 6; // needed Flash version
	function FlashDetect() {
		this.version = -1; // init
		this.revision = -1;
		if (navigator.plugins && navigator.plugins.length > 0) // plug-in browser
			{
			// Check whether the plug-in is installed:
			if (navigator.plugins["Shockwave Flash"])
			{
				// Get the plug-in version and revision:
				var words = navigator.plugins["Shockwave Flash"].description.split(" ");
				for (var i = 0; i< words.length; ++i)
				{
					if (isNaN(parseInt(words[i])))
					continue;
					this.version = words[i];
					this.revision = parseInt(words[words.length-1].substring(1));
				}
			}
		}
		else return; // ie+Win
	}
	