<!--
function ShowProgress(strBarref)	{
	strAppVersion = navigator.appVersion;
	
	if (strAppVersion.indexOf('MSIE') != -1 && strAppVersion.substr(strAppVersion.indexOf('MSIE')+5,1) > 4){
		winstyle = "dialogWidth=385px; dialogHeight:140px; center:yes";
		window.showModelessDialog(strBarref + '&b=IE',null,winstyle);
	} else {
		window.open(strBarref + '&b=NN','','width=370,height=115', true);
	}
		
	return true;

}
-->
