<!--

function Pop(fileOpen,wi,hi) {
  var floater = null
  floater = window.open('','Pop','width='+wi+',height='+hi+',resizable=0,status=0,scrollbars=yes')
  if (floater != null) {
    if (floater.opener == null) floater.opener = window; 
         floater.opener.name = 'opener';
    }
  floater.location.href = fileOpen;
  onBlur = floater.focus();
}

function Pop1(fileOpen,wi,hi) {
  var floater = null
  floater = window.open('','Pop','width='+wi+',height='+hi+',resizable=0,status=0,scrollbars=yes')
  if (floater != null) {
    if (floater.opener == null) floater.opener = window; 
         floater.opener.name = 'opener';
    }
  floater.location.href = fileOpen;
  onBlur = floater.focus();
}

//-->