function sendClick( table, id){
	new Ajax.Request(
		'/analytics.php',{		
			method: 'get',
			parameters: { 
				'entity[color_depth]': window.screen.colorDepth, 
				'entity[screen_width]': window.screen.width, 
				'entity[screen_height]': window.screen.height, 
				'entity[navigator]': navigator.appCodeName, 
				'entity[language]': navigator.language, 
				'entity[platform]': navigator.platform,
				table: table,
				id: id
			}		
 	});	
}
 	 	