function WinOpen(file, w, h) {
  var option = "width=" + w + ",height=" + h;
  window.open(file,"",option + ",left=100,top=100,scrollbars=yes,menubar=no,toolbar=no,statusbar=no,resizable=yes,directories=no");
}

function CoaSearch() {
  var p = document.CoAForm.p.value.replace(/^[ 　]+|[ 　]+$/g, '');
  var l = document.CoAForm.l.value.replace(/^[ 　]+|[ 　]+$/g, '');

  if (p.length == 0 && l.length == 0) {
    alert("Indtast venligst både produktnummer og lotnummer.");
    return false;
  } else if (p.length == 0 && l.length != 0) {
    alert("Indtast venligst produktnummeret.");
    return false;
  } else if (p.length != 0 && l.length == 0) {
    alert("Indtast venligst lotnummeret.");
    return false;
  }

  document.CoAForm.submit();
  return true;
}

