function placeFlash(FileName, width, height, parameters) {
        if(!FileName || !width || !height) {return}
        var str = '';
        str += '\n<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'">';
        str += '\n<param name="movie" value="'+FileName+'"/>';
        str += '\n<param name="quality" value="high"/>';
        if(parameters){
                for(param in parameters){str += '\n<param name="'+param+'" value="'+parameters[param]+'"/>';}
        }
        str += '\n<embed src="'+FileName+'" quality="high" width="'+width+'" height="'+height+'"';
        str += ' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" ';
        str += ' width="'+width+'" height="'+height+'"';
        if(parameters){
                for(param in parameters){str += ' '+param+'="'+parameters[param]+'"';}
        }
        str += '></embed></object>';
        document.writeln(str);
}
