Well, two months later and I figured out how to do this on my own (but thanks for all the suggestions and help

)....anyway, here is the information is case it helps anyone else. All it requires is some simple template modifications (not really a hack, I guess).
First, you need to find out the field number of the custom field you want to make clickable. In your control panel, go to User Profile Fields and click on modify. This pulls up a list of your custom fields. If you hover your cursor over the edit link next to each one it gives you the profilefieldid number at the end of the link properties. In my case the My Journal custom field was field 10.
Next click on edit, and edit the field so that the "field hidden on profile" is set to YES (you don't want it show up since it will be in plain text and you don't want that). You will create a custom table row in the user's profile that uses the information from field 10 (or whatever number) to create a link.
Next go to your "getinfo" template and add a custom row something like the following (I put the row in right after the Homepage row)....
PHP Code:
<tr>
<td bgcolor="{secondaltcolor}"><normalfont><b>My Journal:</b></normalfont></td>
<td bgcolor="{secondaltcolor}"><normalfont><a href="$userinfo[field10]" target="_blank">$userinfo[field10]</a> </normalfont></td>
</tr>
Make sure to change the field10 to whatever field number you are using and the My Journal to the name of whatever your row is for.
The custom field is now presented as a clickable link!