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("제품 코드 및 로트 번호를 입력하여 주십시오.");
    return false;
  } else if (p.length == 0 && l.length != 0) {
    alert("제품 코드를 입력하여 주십시오.");
    return false;
  } else if (p.length != 0 && l.length == 0) {
    alert("로트 번호를 입력하여 주십시오.");
    return false;
  }

  document.CoAForm.submit();
  return true;
}
