<!-- 
	function ProgressBarShow() {
		strAppVersion = navigator.appVersion; 
		if (strAppVersion.indexOf('MSIE')!=-1 && strAppVersion.substr(strAppVersion.indexOf('MSIE')+5,1) > 4) { 
			winstyle = "dialogWidth=385px; dialogHeight:150px; center:yes"; 
			window.showModelessDialog("/common/show_progress.asp?nav=ie", null, winstyle); 
		} else { 
			winpos = "left=" + ((window.screen.width-380)/2)+",top=" + ((window.screen.height-110)/2); 
			winstyle="width=380,height=110,status=no,toolbar=no,menubar=no,location=no, resizable=no,scrollbars=no,copyhistory=no," + winpos; 
			window.open("/common/show_progress.asp",null,winstyle); 
		} 
	}

	function ShowProgress(fileobj1, fileobj2) { 
		if ((document.all[fileobj1].value != "") || (document.all[fileobj2].value != "") ) {
			ProgressBarShow();
		}
		return true; 
	} 

	function ShowProgress_solo(fileobj1) { 
		if (document.all[fileobj1].value != "") {
			ProgressBarShow();
		}
		return true; 
	} 
//--> 
