function ShowProgress()
	{
	strAppVersion = navigator.appVersion;
	if (document.MyForm.FILE1.value != "" || document.MyForm.FILE2.value != "" || document.MyForm.FILE3.value != "")
	{
		if (strAppVersion.indexOf('MSIE') != -1 && strAppVersion.substr(strAppVersion.indexOf('MSIE')+5,1) > 4)
			{
			winstyle = "dialogWidth=390px; dialogHeight:180px; center:yes";
			window.showModelessDialog('<% = barref %>&b=IE',null,winstyle);
			}
	else
		{
		window.open('<% = barref %>&b=NN','','width=370,height=155', true);
		}
	}
	return true;
	}
