function table(o) {
  for (x = 0; x < o.cnt; x++) {
    document.write(
"<tr>" +
"  <td align=\"left\" width=\"79\" height=\"25\"><b><font face=\"Verdana\" color=\"#00458A\" size=\"2\">" + o.dose[x] + "</font></td>" +
"  <td align=\"left\"><b><font face=\"Verdana\" color=\"#00458A\" size=\"2\">" + o.qty[x] + " " + o.type[x] + "</font></b></td>" + 
"  <td align=\"right\" width=\"100\" height=\"25\"><b><font face=\"Verdana\" color=\"#00458A\" size=\"2\">$" + o.price[x] + "</font></b></td>" +
"  <td align=\"center\" width=\"115\" height=\"25\"><b><font face=\"Verdana\" color=\"#00458A\" size=\"2\">$0.00</font></b></td>" +
"  <td align=\"justify\" width=\"77\" height=\"25\"><a href=\"https://secure.prescriptionbilling.com/medalife/buynow.php?ProductID=" + o.id[x] + "" + "\"><img src=\"http://www.medalife.com/images/image_order_now.gif\" vspace=\"2\" border=\"0\"></a></td>" +
"</tr>");
  }
}
