function chk_Prod(frm) {
  var ttcnt = frm.ttcnt.value;
  
  var getprd = false;
  for(i = 0; i < ttcnt; i++) {
    if(eval('frm.quantity' + i).value != '') {
      getprd = true;
      break;
    }
    
  }
  
  if(!getprd) {
    alert("Please specify the quantity.");
    return false;
  }
  
  return true;
  
}


