Even easier would be a pure DHTML popup that could be draggable, and would use the info already on the page ... a tempalte would be all you would need - no file edits really as the javascript would be placed into headinclude, or in the postbit itself...
Check out dynamicdrive.com for the kind of scripts I'm talking about
EDIT: you'd be adding the template to the end of your postbit template, wrapped in a
Code:
<div id="thefunk" style="display:none"> ..... </div>
- position in the code is unimportant as you will be positioning it with DHTML - and make it initially
but alter that with the javascript...
The link you refered to would be
Code:
<a href="#" title="Click for great funky lookin information" onclick="bringTheFunk('thefunk');return false;">Bring the funk</a>
and your javascript from dynamicdrive would take the form
Code:
<script type="text/javascript>
<!--
function bringTheFunk(id)
{
..... funky javascript popup here .....
}
//-->
</script>
HTH