First make sure the loop module is loaded:
lsmod | grep loop
If it's not, then: modprobe loop
Now you really need to know what filesystem the image uses, I will take a guess that its iso9660.
So try in a terminal:
mount -o loop theddimage.dd /home/Beerbaron/mount/here
If that doesn't work you will need to specify the file system (iso9660, ntfs, ext3 etc) the image uses:
mount -t iso9660 -o loop theddimage.dd /home/Beerbaron/mount/here
Hope that's some help