Sure - I had an idea that I could send values to be displayed as meta data.
The web page would be set up to display the meta using FP tools. Then I
would just have to update the meta data but I could change the way the page
looks with FP and the data would 'follow'..
Did that make sense?
<META name="description" content="some text here">
<script type="text/javascript">
var i = document.getElementsByTagName("META");
for(x=0;x<i.length;x++){
if(i[x].name.toLowerCase()=='description'){document.write(i[x].getAttribute("CONTENT"));break}
}
</script>