function show_flash(file, streamurl, provider, autostart, preview)
{
	var s1 = new SWFObject('/flash/player-licensed.swf','player','450','275','9');
	s1.addParam('allowfullscreen','true');
	s1.addParam('allowscriptaccess','always');
	s1.addParam('wmode','opaque');
	s1.addVariable('provider',provider);
	s1.addVariable('streamer',streamurl);
	s1.addVariable('file', file);
	if(preview) s1.addVariable('image', '/flash/preview.jpg');
	s1.addVariable('autostart', autostart);

	s1.write('mediaplace');
}



function show_flash_file(file, autostart, preview)
{
	var s1 = new SWFObject('/flash/player-licensed.swf','player','450','275','9');
	s1.addParam('allowfullscreen','true');
	s1.addParam('allowscriptaccess','always');
	s1.addParam('wmode','opaque');
	s1.addVariable('file', file);
	s1.addVariable('autostart', autostart);
	if(preview) s1.addVariable('image', '/flash/' + file + '.jpg');

	s1.write('mediaplace');
}

