//-----------------------------------
// Paypal functions
//-----------------------------------

function RSM_add(title, item_no, price) {

document.write("<form target=\"paypal\" action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\">");
document.write("<div align=\"center\">");
document.write("<table><tr><td><p>Delivery</p></td><td><select name=\"shipping\"><option value=\"0.00\">United Kingdom<option value=\"3.00\">Worldwide</select></td></tr></table>");
document.write("<input type=\"hidden\" name=\"cmd\" value=\"_cart\">");
document.write("<input type=\"hidden\" name=\"business\" value=\"p.mould" + "@" + "yahoo.com\">");
document.write("<input type=\"hidden\" name=\"item_name\" value=\"" + title + "\">");
document.write("<input type=\"hidden\" name=\"item_number\" value=\" " + item_no + "\">");
document.write("<input type=\"hidden\" name=\"amount\" value=\"" + price + "\">");
document.write("<input type=\"hidden\" name=\"no_note\" value=\"1\">");
document.write("<input type=\"hidden\" name=\"currency_code\" value=\"GBP\">");
document.write("<input type=\"image\" src=\"http://www.bluepig.plus.com/Pmp/Lib/Images/x-click-but22.gif\" border=\"0\" name=\"submit\" alt=\"Make payments with PayPal - it's fast, free and secure!\">");
document.write("<input type=\"hidden\" name=\"add\" value=\"1\">");
document.write("<input type=\"hidden\" name=\"image_url\" value=\"http://www.bluepig.plus.com/Pmp/Images/logoforpaypal.gif\">");
document.write("</div>");
document.write("</form>");
} // nf

function RSM_nodelivadd(title, item_no, price, currency) {

document.write("<form target=\"paypal\" action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\">");
document.write("<div align=\"center\">");
document.write("<input type=\"hidden\" name=\"cmd\" value=\"_cart\">");
document.write("<input type=\"hidden\" name=\"business\" value=\"p.mould" + "@" + "yahoo.com\">");
document.write("<input type=\"hidden\" name=\"item_name\" value=\"" + title + "\">");
document.write("<input type=\"hidden\" name=\"item_number\" value=\"" + item_no + "\">");
document.write("<input type=\"hidden\" name=\"amount\" value=\"" + price + "\">");
document.write("<input type=\"hidden\" name=\"no_note\" value=\"1\">");
document.write("<input type=\"hidden\" name=\"currency_code\" value=\"" + currency + "\">");
document.write("<input type=\"image\" src=\"http://www.bluepig.plus.com/Pmp/Lib/Images/x-click-but22.gif\" border=\"0\" name=\"submit\" alt=\"Make payments with PayPal - it's fast, free and secure!\">");
document.write("<input type=\"hidden\" name=\"add\" value=\"1\">");
document.write("<input type=\"hidden\" name=\"image_url\" value=\"http://www.bluepig.plus.com/Pmp/Images/logoforpaypal.gif\">");
document.write("</div>");
document.write("</form>");
} // nf

function RSM_cart() {

document.write("<form target=\"paypal\" action=\"https://www.paypal.com/cgi-bin/webscr\" method=\"post\">");
document.write("<input type=\"hidden\" name=\"cmd\" value=\"_cart\">");
document.write("<input type=\"hidden\" name=\"business\" value=\"p.mould" + "@" + "yahoo.com\">");
document.write("<input type=\"image\" src=\"http://www.bluepig.plus.com/Pmp/Lib/Images/view_cart.gif\" border=\"0\" name=\"submit\" alt=\"Make payments with PayPal - it's fast, free and secure!\">");
document.write("<input type=\"hidden\" name=\"display\" value=\"1\">");
document.write("<input type=\"hidden\" name=\"image_url\" value=\"http://www.bluepig.plus.com/Pmp/Images/logoforpaypal.gif\">");
document.write("</form>");
} // nf