// Author: Andrew Green / Copyright DR Solutions International Ltd.

function fncshowprogress(sfield,sBarRef){
  strAppVersion = navigator.appVersion;
  if (document.getElementById(sfield).value != ""){
    if (strAppVersion.indexOf('MSIE') != -1 && strAppVersion.substr(strAppVersion.indexOf('MSIE')+5,1) > 4){
      winstyle = "dialogWidth=385px; dialogHeight:140px; center:yes";
      window.showModelessDialog(sBarRef + '&b=IE',null,winstyle);
    }else{
      window.open(sBarRef + '&b=NN','','width=370,height=115', true);
    }
  }
  return true;
}
