function addcomment()
{
  pageTracker._trackPageview('/COMMENT.HTML');
  new Ajax.Updater( 'comments', '/ajax/addcomment.php',
  {
    method: 'post',
    parameters: $('cform').serialize(),
    onSuccess: function() {
       $('comment_text').value = comment_text.value;
    }
  } );
}

function add2cart()
{
  pageTracker._trackPageview('/2CART.HTML');
  new Ajax.Updater( 'cart', '/add2cart.php',
  {
    method: 'post',
    parameters: $('cartform').serialize(),
    onSuccess: function(request){ ; }
  } );
}

function add2cart2(id)
{
  pageTracker._trackPageview('/2CART.HTML');
  new Ajax.Updater( 'offer'+id, '/add2cart.php',
  {
    method: 'post',
    parameters: $('cartform'+id).serialize(),
    onSuccess: function(request){ ; }
  } );
}