function logCommClick (commercialId, commercialName)
{
    new Ajax.Request(fullPath+'/ajaxserv.php', {
			  method: 'post',
			  parameters: "action=insertIntoCommerciallog&commercialId="+commercialId+"&commercialName="+commercialName,
			  onSuccess: function(transport) {
			  }
			});
}

