01.
<script type=
"text/javascript"
>
02.
setInterval(refreshIframe2,180*1000);
03.
function
refreshIframe2() {
04.
var
frame = document.getElementById(
"Frame2"
);
05.
frame.src = frame.src;
06.
}
07.
</script>
08.
<iframe id=
"Frame"
src=
"ch3chk.php?id=1"
height=
"50"
width=
"50"
></iframe>
09.
<iframe id=
"Frame2"
src=
"ch3chk.php?id=2"
height=
"50"
width=
"50"
></iframe>