function createPlayer(moviename, pwidth, pheight)
{
var s1 = new SWFObject('flvplayer.swf', 'playlist', pwidth, pheight, '#336699');
s1.addVariable('file', moviename);
s1.addVariable('overstretch', 'false'); // expands to fit h or v "false" -will stretch them to fit
s1.addVariable('showdigits', 'true');
s1.addVariable('autostart', 'true');
s1.addVariable('shuffle', 'false');
s1.addVariable('repeat', 'list');
s1.addVariable('showicons', 'true');
s1.addVariable('thumbsinplaylist', 'true');
s1.addVariable('controlbar', 'over');
s1.write('player');
};