Forum Moderators: phranque
In your link set target="_blank" and a new instance of the browser will open with your picture. If you wish to turn off toolbars and whatnot you'll need to use Javascript.
ex:
<script>
function openURL(sURL){
window.open(sURL,null,"height=475,width=590,top=0,left=50,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes");
}
</script><a href="javascript: openURL('http://server.tld/path/to/picture.ext');">click here</a>
Also, you may want to pass the height and width of the picture to the openURL function so that it opens as large as the image itself. Leaving the scrollbar is alway a good thing since you are unable to reliably tell the size of someone's browser window (and resetting it just upsets people).
Sorry I couldn't offer a frontpage specific answer but I haven't used nor tried to use frontpage/dreamweaver/golive in over five years.