// JavaScript Document
// Display Flash
function DisplayFlash(flaURL,flaWidth,flaHeight) {
  var lw = screen.width/2 - flaWidth/2;
  var lh = screen.height/2 - flaHeight/2;
  newWindow = window.open(flaURL,'newWin','left='+lw+',top='+lh+',toolbar=no,resizable,width='+flaWidth+',height='+flaHeight);
  newWindow.focus();
}