<body>
<DIV ID='button1' NAME='button1'>
<iframe src='button.jsp'></iframe>
</div>
<script>
document.ondblclick=refresh;
function refresh()
{
  button1.childNodes[0].src='button.jsp'+'?temp='+Math.random().toString();
}
</script>
</body>