function LaunchFlashWindow(URL, Width, Height){

//center it
winLeft = (screen.width/2-Width/2); 
winTop = (screen.height/2-Height/2); 
  if (URL != "")
  {
  			
  
    flashwindow = window.open(URL,"flashwindow","height=" + Height + ",width=" + Width + ",alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=0,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=No,scrollbars=no,status=0,titlebar=0,toolbar=0,z-lock=0,screenX=0,screeny=0" + ",left=" + winLeft + ",top=" + winTop);
    flashwindow.focus();
  }
}
