//
// js to make rows for BPF production history
//
function makeRowProdHist(strPlay,strWright,strPlace,strDates)
  {
  if (strDates.length < 3) strDates ='&nbsp;';
  var strRow ='<tr><td style="font-style:italic;vertical-align:center;text-align:left" width="35%">' + strPlay +'</td>';
  strRow +='<td style="vertical-align:center;text-align:left" width="30%">' +strWright +'</td>';
  strRow +='<td style="vertical-align:center;text-align:left" width="25%">' +strPlace +'</td>';
  strRow +='<td  style="vertical-align:center;text-align:right" width="10%">' +strDates +'</td></tr>'
  document.write(strRow);
  }
  