function createPlayer() {
    var so = new SWFObject('http://www.thornvillechurch.com/tools/media/player.swf','messages','320','500','8');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','sameDomain');
so.addVariable('file','http://www.thornvillechurch.com/sermons/Living-in-the-Shadow-of-the-Cross/playlist.php');
so.addVariable('playlist','bottom');
so.addVariable('playlistsize','230');
so.addVariable('skin','http://www.thornvillechurch.com/tools/media/skins/stijl.swf');
so.addVariable('autostart','false');
so.addVariable('fullscreen','true');
so.addVariable('showdownload','true');
so.addVariable('wmode','opaque');
so.write('messages');
};

function loadPlaylist(file) {
var so = new SWFObject('http://www.thornvillechurch.com/tools/media/player.swf','messages','320','500','8');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','sameDomain');
so.addVariable('file',file);
so.addVariable('playlist','bottom');
so.addVariable('playlistsize','230');
so.addVariable('skin','http://www.thornvillechurch.com/tools/media/skins/stijl.swf');
so.addVariable('autostart','false');
so.addVariable('fullscreen','true');
so.addVariable('showdownload','true');
so.addVariable('wmode','opaque');
so.write('messages');
};