Torna al Thread
<html>
<head>
<script type="text/javascript">
//<!--
// intervallo in millisecondi
var intervallo = 3000;
function init() {
setTimeout('refresh_iframe()',intervallo);
}
// caricamento iterato dell'iframe
function refresh_iframe() {
var myIFrame = document.getElementById('ts');
if (!myIFrame) return false;
myIFrame.src = myIFrame.src;
setTimeout('refresh_iframe()',intervallo);
}
window.onload = init;
//-->
</script>
</head>
<body>
<iframe id="ts" allowtransparency="true" src="http://www.tsviewer.com/ts_viewer_pur.php?ID=9798&bg=transparent&type=141FEB" marginheight="0"
marginwidth="0" scrolling="yes" width="179" height="346" frameborder="0" style="width: 178px; height: 416px; border:1px solid #282828;"></iframe>
</body>
</html>