function compareProduct(obj, id, reload)
{
	if ($('product_'+id))
	{
		if ($('product_'+id).style.display == 'none')
			$('product_'+id).style.display = '';
				else $('product_'+id).style.display = 'none';
	}
	new Ajax.Request(
		'/?section=15&product_id='+id, 
		{
			method: 'get',
			onComplete:function(e)
			{
				if ($('products_compare'))
					$('products_compare').innerHTML = e.responseText;
				if (reload)
    				document.location=document.location;
			}
		}
    );
    
}