var ShSettings=new function() {
  var o=DOMhelp.createElement;

  this.wishURL = function(id) {
    var url='http://www.scrapbook.com/wishlist/';
    if (id)
      url+='?m=ffadd&vwitem='+id;
    return url;
  };
  this.cartURL = function(id) {
    var url='http://order.store.yahoo.net/cgi-bin/wg-order?vwcatalog=scrapbook-dot-com';
    if (id)
      url+='&vwitem='+id;
    return url;
  };
  this.productURL = function(id) {
    return 'http://store.scrapbook.com/'+id+'.html'
  };

  this.lbItemHeight = 200;
  this.lbItemWidth = 200;
  this.lbItemPadding = 15;
  this.lbRowCount = 6;
};
