function vytvorFlash(menomovie, width, height, id){    document.writeln("<object type='application/x-shockwave-flash' data='"+menomovie+"' width='"+width+"' height='"+height+"' id='"+id+"'><param name='movie' value='"+menomovie+"'><param name='quality' value='high'><param name='wmode' value='transparent'></object>");}function upravPoziciu(id){     var winW = screen.width;    if( typeof( window.innerWidth ) == 'number' ) {      winW = window.innerWidth;    } else if( document.documentElement && document.documentElement.offsetWidth ) {      winW = document.documentElement.offsetWidth;    } else if( document.body && document.body.offsetWidth ) {      winW = document.body.offsetWidth;    }        var upravenyDiv = document.getElementById(id);    upravenyDiv.style.left = Math.round((winW-741)/2)+"px";    }