<!--
function BuyNow(who,what,howmuch){
document.writeln("<form target='paypal' action='https://www.paypal.com/cgi-bin/webscr' method='post'>");
document.writeln("<input type='image' src='/images/addtocart.png' border='0' name='submit' alt='Make payments with PayPal - it's fast, free and secure!'>");
document.writeln("<input type='hidden' name='add' value='1'>");
document.writeln("<input type='hidden' name='cmd' value='_cart'>");
document.writeln("<input type='hidden' name='business' value='"+who+"'>");
document.writeln("<input type='hidden' name='item_name' value='"+what+"'>");
document.writeln("<input type='hidden' name='amount' value='"+howmuch+"'>");
document.writeln("<input type='hidden' name='shipping' value='0.00'>");
document.writeln("<input type='hidden' name='cn' value='Further Instructions:'>");
document.writeln("<input type='hidden' name='currency_code' value='USD'>");
document.writeln("<input type='hidden' name='lc' value='US'>");
document.writeln("</form>");
}
//-->
