<head>
<script>
var tmp;
function windinopen(){
  if(document.all){
     tmp = window.open('c.html','FullWindow','screenX=0,screenY=0,directories=0,fullscreen=1,width=1024,height=768,location=0,menubar=0,status=0,toolbar=0,scrollbar=no')
     tmp.moveTo(0,0);
     tmp.resizeTo(screen.width,screen.height);
  }
  setTimeout('tmp.close()',3000);
}</script>
</head>
<body onload='windinopen()'>
</body>