$('.ShowDataContent .DataPhoto').bind('dblclick', function(event) {
// Функция
});
$('.ShowDataContent .ActionsButton .b').bind('click', function(event){
// Функция (та же самая)
});
var somefunc = function(event) {
// Функция
}
$('.ShowDataContent .DataPhoto').bind('dblclick', somefunc);
$('.ShowDataContent .ActionsButton .b').bind('click', somefunc);