setTimeout(function() {						
	friendListen();
}, 20000);//20 seconds

// Get what my friends listen
function friendListen(){
	if(checkLogin() && $('#hidVideoID').val()){
		$.post("/includes/NewFace_NgheCaKhuc_FriendListen.php", {
				'id': $('#hidVideoID').val(),
				'type': 'v'
			},
			function(data){
			}
		);
	}
	return false;
}

