function newSize(datoX,datoY) {
  //alert('wymiary:\nszer='+datoX+'\nwys='+datoY)
  if (document.all && !document.getElementById) {
     document.all['miflash'].style.pixelWidth = datoX+'px';
  } else {
    document.getElementById('miflash').style.width = datoX+'px';
    document.getElementById('miflash').style.height = datoY+'px';
  }
}

