Excuse the BUMP again - I have a found a method that works and wanted to share:
Put the following code in the value of the hidden field:
<?php
$option = JRequest::getCmd('option');
$view = JRequest::getCmd('view');
if ($option=="com_content" && $view=="article") {
$ids = explode(':',JRequest::getString('id'));
$article_id = $ids[0];
$article =& JTable::getInstance("content");
$article->load($article_id);
return $article->get("title");
}
?>
And it should return the title of the article you are currently viewing.
Frank