function addToWishList() {
  buy_form = $('buy');
  buy_form.action = "/account/wish_list/wish_list_items/";
  buy_form.submit();
}

function popup(url) {
  window.open(url + "?popup=true", "", "width=520px, height=400px, scrollbars=1");
  return false;
}

function jumpTo(url) {
  if(url) {
    window.location = url;
  }
}

function setMainProductImage(path) {
  $('product_main_image').src = path;
}