// creates FB add to cart button
// example call   FBAdd2Cart('6309', 'Wild Horses' );
function FBAdd2Cart(item, desc)
{
    var price='$14.99';
    document.write('<br>'+price+'  ');
    document.write('<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_cart&business=KYVBBMJ9RR8G4&lc=US');
    document.write('&item_name='+desc+' Fleece Blanket&item_number='+item+'&amount='+price);
    document.write('&currency_code=USD&button_subtype=products&cn=Add%20special%20instructions%20to%20the%20seller');
    document.write('&no_shipping=2&shipping=5%2e99&add=1&bn=PP%2dShopCartBF%3abtn_cart_LG%2egif%3aNonHosted">');
    document.write('<img src="https://www.paypal.com/en_US/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"></a>');
}
