function createPlayer(videofile)
{
var s1 = new SWFObject('http://www.sitevideo.nl/flv/player.swf', 'playlist', '720', '425', '7');
s1.addParam('allowfullscreen', 'true');
s1.addParam('wmode', 'transparent');
s1.addVariable('width', '720');
s1.addVariable('height', '424');
s1.addVariable('displayheight', '404');
s1.addVariable('file', 'http://www.sitevideo.nl/flv/' + videofile);
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', 'true');
s1.addVariable('showicons', 'false');
s1.addVariable('thumbsinplaylist', 'true');
s1.addVariable('backcolor', '0xFFFFFF'); // face of buttons
s1.addVariable('frontcolor', '0x404040'); // button symbols & playlist text
s1.addVariable('lightcolor', '0x808080'); // highlighted playlist item
s1.addVariable('screencolor', '0x000000'); // screen background color
s1.write('flashplayer');
};
