// statRecorder function
// This function is usually called on onClick event for the link you want to count 
// It will update specified counter

function statRecorder( counter_id, item_id ){
	if (typeof item_id == 'undefined' ) var item_id = "";
	var counterObj = new ajUtils();
	counterObj.xmlhttpSend('stat_recorder_aj.php?counter_id='+counter_id+'&item_id='+item_id,'GET');
}


