<!--
function table(o) {
for (x = 0; x < o.cnt; x++) {
document.write(
    "<tr>" +
		"<td width='110' height='20' align='center' class='bdtxt' bgcolor='#cdcdcd'><b>" + o.name + "</b><br></td>" +
		"<td width='85' align='center' class='bdtxt' bgcolor='#cdcdcd'>" + o.dose[x] + "</td>" +
		"<td width='120' align='center' class='bdtxt' bgcolor='#cdcdcd'>" + o.qty[x] + " " + o.type[x] + "</td>" +
		"<td width='65' class='prices' bgcolor='#cdcdcd' align='right'>$" + o.cross[x] + "</td>" +
		"<td width='70' class='pricesnew' bgcolor='#cdcdcd' align='right'>$" + o.price[x] + "</td>" +
		"<td width='70' align='center' class='bdtxt' bgcolor='#cdcdcd'><b>0.00</b></td>" +
		"<td align='center' class='bdtxt' bgcolor='#cdcdcd'><a href='https://secure.prescriptionbilling.com/micropharmacy1/buynow.php?ProductID=" + o.id[x] + "'>Order Now</a></td>" + 
	"</tr>");

}
}
-->
