//$Id: CustomerOpinions.js 2004 2008-02-22 16:48:29Z davidcvs $

//callback of ajax
function callbackCustomerOpinions(response){
   $('#customerOpinionsDetails').html(response);
   return true;
}

//shows the popup
function showCustomerOpinionsLayer(productId) {   
   loadCustomerOpinions(productId, '', '')
   var dialog = new ClassDialog('customersOpinionsPopup', new Array({type:'button', id:'popupCustomersOpinionsClose', returnValue:'false', close:true}));  	
}

//shows popup with ajax-content
function loadCustomerOpinions(productId, startPage, categoryId) {
   xajax_CustomersOpinionsComponent_xCustomersOpinions(productId, startPage, categoryId);       
}