// Support construction of dynamic PayPal args.
var blk1  = "https://www.paypal.com/cart/";

var blk1d = "display=1";
var blk2  = "&business=janie%40thebathspot.com";



var winpar = "width=600,height=400,scrollbars," +
             "location," +  // some users delete this
             "resizable,status";


function CallView () { // call the PayPal shopping cart view
  window.open (blk1 + blk1d +  // open the PayPal cart window
               blk2,
               "cartwin",
               winpar);
}



