var _width = 0, _height = 0;

if( typeof( window.innerWidth ) == 'number' ) {
  //Non-IE
  _width = window.innerWidth;
  _height = window.innerHeight;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
  //IE 6+ in 'standards compliant mode'
  _width = document.documentElement.clientWidth;
  _height = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
  //IE 4 compatible
  _width = document.body.clientWidth;
  _height = document.body.clientHeight;
}

_width -= 20;
_height -= 20;

swfobject.embedSWF("main.swf", "flash", _width, _height, "10.0.0", "swfobject/expressInstall.swf", false, {wmode:'direct', menu:'false', bgcolor:"#000000"}, false );
