// JavaScript Document
function flash1(URL,winName, Width, Height, Scroll){
  var top = (screen.height-Height)/2 ;
  var left = (screen.width -Width)/2 ;
  w = window.open(URL,'Loading','width=' + Width+',height='+Height+',screenX='+left+',screenY='+top+',left='+left+',top='+top+',status=no,toolbar=no,titlebar=no,scrollbars='+Scroll+'');
}

function winset(){
self.resizeTo(1024,768);
h=(screen.height-768)/2;
w=(screen.width-1024)/2;
self.moveTo(w,h);
self.focus();
}