var flash = 'undefined';
var flashVersion = 0;
var runVB = "false";
if (navigator.plugins && navigator.plugins.length)
	{
	if (navigator.plugins["Shockwave Flash"])
		{
		flash = 'true';
		flashVersion = 2;
		flashVersion =navigator.plugins["Shockwave Flash"].description.charAt(navigator.plugins["Shockwave Flash"].description.indexOf('.')-1);
		}
	}
else
	{
	runVB = "true";
	}

function doBackground(image) 
	{
	if (document.all) 
		{
		for (i = 0 ; i < document.all.length ; i++) 
			{
            var child = document.all.item(i);
			if (child) 
				{
				if (child.name == "x") 
					{
					child.background=image;
					}
				}
        	}
		}
	}
