﻿function getItem(iTable, iRow, iCell) {
 var oTableColl = document.getElementsByTagName("TABLE");
 var sText = oTableColl[iTable].rows[iRow].cells[iCell].innerHTML;
 return sText;
}

function displayPrinterFriendlyPage(aId) {

   var oForm = document.createElement("form");
   oForm.name = "printForm";
   oForm.action = "default.asp?id="+aId;
   oForm.method = "post";
   
   var oInput_1 = document.createElement("input");
   oInput_1.type = "hidden";
   oInput_1.name = "PFtext";

  var sValue = getItem(2, 0, 1);
   oInput_1.value = sValue;

   oForm.appendChild(oInput_1);

   document.body.appendChild(oForm);

   oForm.submit();

}
