function ShowFlash( ClassID, CodeBase )
{
  var iw, ih;
  if (window.innerWidth == null) 
  {
    iw = document.body.clientWidth-40;
    ih=document.body.clientHeight-80;
  }
  else 
  {
    iw = window.innerWidth-20;
    ih = window.innerHeight-60;
  }

  document.write( '<OBJECT classid="'+ClassID+'" codebase="'+CodeBase+'" WIDTH=550 HEIGHT=400>' );
}
