/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


function addBookmark(productId){
var url = "/pannello/salva_bookmark.html?productId="+productId;
new Ajax.Request(url, {
  method: 'get',
  onSuccess: function(transport) {
  window.location.replace(window.location.href); 
  }
});
}
function remBookmark(productId){
var url = "/pannello/togli_bookmark.html?productId="+productId;
new Ajax.Request(url, {
  method: 'get',
  onSuccess: function(transport) {
   window.location.replace(window.location.href); 
  }
});
}