function popup(file, width, height) {
  if ((navigator.appName == 'Microsoft Internet Explorer') && (parseInt(navigator.appVersion) <= 3)) {
  } else {
   Help = window.open(file, '', 'directories=no,status=no,location=no,toolbar=no,menubar=no,resizable=yes,scrollbars=yes,width=' + width + ',height=' + height + ''); 
   Help.window.focus();
 //return false;
  }
}

function picPop(file, width, height) {
  if ((navigator.appName == 'Microsoft Internet Explorer') && (parseInt(navigator.appVersion) <= 3)) {
  } else {
   Help = window.open(file, '', 'directories=no,status=no,location=no,toolbar=no,menubar=no,resizable=no,scrollbars=no,width=' + width + ',height=' + height + ''); 
   Help.window.focus();
 //return false;
  }
}

function confirmDelete(label,url)
{
 bPrompt = confirm("Are you sure you wish to delete this " + label + "?");
 if (bPrompt) { document.location = url; }
}

