
	function hiddenFlash()
	{
		var tag = document.getElementById('flashId');
		tag.style.display = 'none';
		tag.style.visibility = 'hidden';
	}
	function myFlash_DoFSCommand(command,args)
	{
		if(command == "closeFlash")
		{
			hiddenFlash();
		}
	}
