
function q(co) {
  var im = document.getElementById('qradek');
  if(im) {
    if(co=='on') {
      im.src = 'i/q_hover.gif';
    } else {
      im.src = 'i/q.gif';
    }
  }
}

function qradek(name, width, height, bg, file) {
  var fla = document.getElementById(name);
  if(fla) {
    var zmienna = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+width+'" height="'+height+'"><param name=movie value="'+file+'"><param name=quality value=high><param name=menu value=false><param name=bgcolor value="'+bg+'"><embed src="'+file+'" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>';
    fla.innerHTML = zmienna;
  }
}

