// JavaScript Document

function updateViewCount(id, type){
	$.ajax({
		type : "POST",
		url : "/includes/ajax/ajax_view.php",
		data : "type="+type+"&id="+id,
		cache : false
	});
}