// JavaScript Document
function count(eventId,url){	
		url = url+'ClickCount&eventId=' + eventId + '&ts=' + new Date().getTime();
		$.ajax({
		 type: "POST",
		 url: url,
		 beforeSend: function() {
				//
		 },
		 success: function(data){    
				//	
			} 
			
		});
	}
