I know little of CF, other than its being a CMS that employs PHP or some server side stuff to let you include things and write portions of your page from a database. At least I think so. If that isn't too far off the mark, and from what you say, this should be simple.
Just have your page grab the info from from the URL in the normal manner and write the image (and a link and/or a caption) to the interior of the 'loadarea'.
If it were a normal page, you could do this:
Code:
<div id="loadarea" style="width: 500px">
<img src="some.jpg"><br>A neat image
</div>
Or, using PHP with short_open_tag and some variables (my exact syntax may be off):
Code:
<div id="loadarea" style="width: 500px">
<img src="<?=$imgSrc;?>"><br><?=$imgCap;?>
</div>
I hope you get the idea, use what's available to you in CF. Whatever you put in there will be overwritten once the user starts activating the thumbnail triggers. But until then, it will be what is seen in that area.
Bookmarks