function galery_delete(obj,PropertyId,GaleryId){
	
	if (!confirm("Esta seguro de eliminar la foto?")){
		return;
	}
	if(!PropertyId && !GaleryId){
		$("#selectedId").val(obj);
		module=$(obj).closest("div.module-contents").attr("id");
		call_bak_module(module,'galery_deleteView');
		
		
	}
	else{
		$("#propertySelectedId").val(PropertyId);
		$("#selectedId").val(GaleryId);
		module=$(obj).closest("div.module-contents").attr("id");
		call_bak_module(module,'galery_deleteView');
	}
	
	
}

function galery_highlighted(PropertyId, GaleryId){
	$("#propertySelectedId").val(PropertyId);
	$("#selectedId").val(GaleryId);
	call_bak("galery_highlightedView");
}
