function LoadFlash(file, fwidth, fheight, destination) {
  document.getElementById(destination).innerHTML = '<object classid="CLSID:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + fwidth.toString() + '" height="' + fheight.toString() + '" type="application/x-shockwave-flash"><param name="MOVIE" value="images/' + file + '" /><param name="wmode" value="transparent" /><embed src="images/' + file + '" width="' + fwidth.toString() + '" height="' + fheight.toString() + '" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" type="application/x-shockwave-flash"></embed></object>';
}

function IntroInit() {
 LoadFlash('medal.swf', 270, 300, 'medal');
 LoadFlash('linki.swf', 360, 123, 'links');
 LoadFlash('dates.swf', 360, 18, 'dates');
}

window.onload = IntroInit;
