
function changeRef(el, company_id) {
	//alert(el.id+' = '+el.checked);

	if ($('candle')) $('candle').src = window.ASSET_BASE+'/br/updating.gif';
	
	new Ajax.Request('/directory/toggleRef',
	  {
	    method:'get',
	    parameters: {rid: el.value},
	    onSuccess: function(transport){
	      var response = transport.responseText || "no response text";
	      //alert(response);
	      if ($('candle')) $('candle').src = '/directory/drawCandle?company_id='+company_id+'&width=400&height=400&days=365&refresh='+Math.random();
	    },
	    onFailure: function(){ }
	  });
	
	return;
}

function hideCommentBox() {
	$("mb-commentform").hide();
}
function showCommentBox() {
	$("mb-commentform").show();
}	
	