/** Отображение флэш-ролика */
function generateFlash(movie, width, height, id, align)
{ 
    
    document.write('<object type="application/x-shockwave-flash" data="'+movie+'" width="'+width+'" height="'+height+'" id="'+id+'" align="'+align+'">');
    document.write('<param name="movie" value="'+movie+'" />');
    document.write('<param name="wmode" value="opaque" />');
	document.write('<embed wmode="opaque"/>');
    document.write('<param name="autoStart" value="-1" />');
    document.write('</object>');
	
	
}

