What you could do is have this code:
Code:
<script type="text/javascript">
<!--
function timein(){
var date = new Date()
var dateout = date.getHours()+":"+date.getMinutes()+ "<sub>"+date.getSeconds()+"</sub> "+date.getMonth()+1+ "/"+date.getDate()+ "/"+date.getFullYear();
document.getElementById('dt').innerHTML=dateout;
}
setInterval("timein()",5);
//-->
</script>
And have dt be a hidden input(id="dt"). But then you would need to get that data from the page. So I don't know. Just giving a little thought that maybe you can ask to change the mail form on the page?
Bookmarks