function resetFlashSize( intro, rate, bg ) {
  var isIE = navigator.appName.indexOf("Microsoft") != -1;
  if ( isIE ) {
    if( intro ){
      $('flash').style.width = $('body').offsetHeight / rate - 20;
      $('flash').style.height = $('body').offsetHeight - 20;
      $('flash').style.top = 0;
      $('flash').style.left = ( $('body').offsetWidth - $('flash').offsetWidth ) / 2;
    }else{
      $('flash').style.width = $('body').offsetWidth - 20;
      $('flash').style.height = $('body').offsetWidth * rate - 20;
      $('flash').style.top = $('body').offsetHeight - $('flash').offsetHeight;
      $('flash').style.left = 0;
    }
    $('body').style.backgroundColor = bg;
  } else {
    if( intro ){
      $('flash').style.width = $('body').offsetHeight / rate;
      $('flash').style.height = $('body').offsetHeight - 14;
      $('flash').style.top = 0;
      $('flash').style.left = ( $('body').offsetWidth - $('flash').offsetWidth ) / 2;
    }else{
      $('flash').style.width = $('body').offsetWidth;
      $('flash').style.height = $('body').offsetWidth * rate - 1;
      $('flash').style.top = $('body').offsetHeight - $('flash').offsetHeight;
      $('flash').style.left = 0;
    }
    $('body').style.backgroundColor = bg;
  }
}
